composer.json 509B

12345678910111213141516171819202122
  1. {
  2. "name": "jms/aop-bundle",
  3. "description": "Adds AOP capabilities to Symfony2",
  4. "keywords": ["annotations","aop"],
  5. "type": "symfony-bundle",
  6. "license": "Apache",
  7. "authors": [
  8. {
  9. "name": "Johannes M. Schmitt",
  10. "email": "schmittjoh@gmail.com"
  11. }
  12. ],
  13. "require": {
  14. "symfony/framework-bundle": "2.*",
  15. "jms/cg": "1.0.0"
  16. },
  17. "autoload": {
  18. "psr-0": { "JMS\\AopBundle": "" }
  19. },
  20. "target-dir": "JMS/AopBundle"
  21. }