composer.json 616B

12345678910111213141516171819202122
  1. {
  2. "name": "sensio/framework-extra-bundle",
  3. "description": "This bundle provides a way to configure your controllers with annotations",
  4. "keywords": ["annotations","controllers"],
  5. "type": "symfony-bundle",
  6. "license": "MIT",
  7. "authors": [
  8. {
  9. "name": "Fabien Potencier",
  10. "email": "fabien@symfony.com"
  11. }
  12. ],
  13. "require": {
  14. "symfony/framework-bundle": "2.*",
  15. "doctrine/common": ">=2.0"
  16. },
  17. "autoload": {
  18. "psr-0": { "Sensio\\Bundle\\FrameworkExtraBundle": "" }
  19. },
  20. "target-dir": "Sensio/Bundle/FrameworkExtraBundle"
  21. }