composer.json 732 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "mindplay/annotations",
  3. "type": "library",
  4. "description": "Industrial-strength annotations for PHP",
  5. "keywords": ["annotations", "framework"],
  6. "homepage": "http://blog.mindplay.dk/",
  7. "license": "LGPL-3.0+",
  8. "authors": [
  9. {
  10. "name": "Rasmus Schultz",
  11. "email": "rasmus@mindplay.dk"
  12. }
  13. ],
  14. "require": {
  15. "php": ">=5.3.3"
  16. },
  17. "require-dev": {
  18. "phpunit/php-code-coverage": "~1.2.1",
  19. "phpunit/php-file-iterator": ">=1.3.0@stable"
  20. },
  21. "autoload": {
  22. "psr-4": { "mindplay\\annotations\\": "src\\annotations" }
  23. },
  24. "extra": {
  25. "branch-alias": {
  26. "dev-master": "1.3.x-dev"
  27. }
  28. }
  29. }