composer.json 405B

1234567891011121314151617181920
  1. {
  2. "name": "jms/cg",
  3. "description": "Toolset for generating PHP code",
  4. "keywords": ["code generation"],
  5. "type": "library",
  6. "license": "Apache",
  7. "authors": [
  8. {
  9. "name": "Johannes M. Schmitt",
  10. "email": "schmittjoh@gmail.com"
  11. }
  12. ],
  13. "require": {
  14. "php": ">=5.3.0"
  15. },
  16. "autoload": {
  17. "psr-0": { "CG\\": "src/" }
  18. }
  19. }