composer.json 454B

1234567891011121314151617181920
  1. {
  2. "name": "jms/metadata",
  3. "description": "Class/method/property metadata management in PHP",
  4. "keywords": ["annotations","metadata","yaml","xml"],
  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": { "Metadata\\": "src/" }
  18. }
  19. }