composer.json 912 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "sonata/doctrine-orm-admin-bundle",
  3. "type": "symfony-bundle",
  4. "description": "Symfony Sonata / Integrate Doctrine ORM into the SonataAdminBundle",
  5. "keywords": ["Admin Generator", "admin", "sonata", "bootstrap"],
  6. "homepage": "http://sonata-project.org/bundles/admin",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Thomas Rabaix",
  11. "email": "thomas.rabaix@sonata-project.org"
  12. },
  13. {
  14. "name": "Sonata Community",
  15. "homepage": "https://github.com/sonata-project/SonataAdminBundle/contributors"
  16. }
  17. ],
  18. "require": {
  19. "php": ">=5.3.2",
  20. "sonata/admin-bundle": "*",
  21. "symfony/framework-bundle": "2.*",
  22. "symfony/security-bundle": "2.*"
  23. },
  24. "autoload": {
  25. "psr-0": { "Sonata\\DoctrineORMAdminBundle": "" }
  26. },
  27. "target-dir": "Sonata/DoctrineORMAdminBundle"
  28. }