composer.json 1014 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "sonata-project/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. "homepage": "http://sonata-project.org"
  13. },
  14. {
  15. "name": "Sonata Community",
  16. "homepage": "https://github.com/sonata-project/SonataDoctrineORMAdminBundle/contributors"
  17. }
  18. ],
  19. "require": {
  20. "php": ">=5.3.2",
  21. "doctrine/orm": "2.1.*",
  22. "doctrine/dbal": "2.1.*",
  23. "symfony/symfony": "2.0.*",
  24. "sonata-project/admin-bundle": "2.0.*"
  25. },
  26. "autoload": {
  27. "psr-0": { "Sonata\\DoctrineORMAdminBundle": "" }
  28. },
  29. "target-dir": "Sonata/DoctrineORMAdminBundle"
  30. }