composer.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "doctrine/doctrine-fixtures-bundle",
  3. "type": "symfony-bundle",
  4. "description": "Symfony DoctrineFixturesBundle",
  5. "keywords": ["Persistence", "Fixture"],
  6. "homepage": "http://www.doctrine-project.org",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Fabien Potencier",
  11. "email": "fabien@symfony.com"
  12. },
  13. {
  14. "name": "Doctrine Project",
  15. "homepage": "http://www.doctrine-project.org"
  16. },
  17. {
  18. "name": "Symfony Community",
  19. "homepage": "http://symfony.com/contributors"
  20. }
  21. ],
  22. "require": {
  23. "php": "^7.1 || ^8.0",
  24. "doctrine/data-fixtures": "^1.3",
  25. "doctrine/doctrine-bundle": "^1.11|^2.0",
  26. "doctrine/orm": "^2.6.0",
  27. "doctrine/persistence": "^1.3.7|^2.0",
  28. "symfony/config": "^3.4|^4.3|^5.0",
  29. "symfony/console": "^3.4|^4.3|^5.0",
  30. "symfony/dependency-injection": "^3.4|^4.3|^5.0",
  31. "symfony/doctrine-bridge": "^3.4|^4.1|^5.0",
  32. "symfony/http-kernel": "^3.4|^4.3|^5.0"
  33. },
  34. "require-dev": {
  35. "doctrine/coding-standard": "^6.0",
  36. "phpunit/phpunit": "^7.4 || ^8.0 || ^9.2",
  37. "symfony/phpunit-bridge": "^4.1|^5.0"
  38. },
  39. "autoload": {
  40. "psr-4": { "Doctrine\\Bundle\\FixturesBundle\\": "" }
  41. },
  42. "config": {
  43. "sort-packages": true
  44. }
  45. }