composer.json 893 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "doctrine/deprecations",
  3. "type": "library",
  4. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  5. "homepage": "https://www.doctrine-project.org/",
  6. "license": "MIT",
  7. "require": {
  8. "php": "^7.1|^8.0"
  9. },
  10. "require-dev": {
  11. "phpunit/phpunit": "^7.0|^8.0|^9.0",
  12. "psr/log": "^1.0",
  13. "doctrine/coding-standard": "^6.0|^7.0|^8.0"
  14. },
  15. "suggest": {
  16. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  17. },
  18. "autoload": {
  19. "psr-4": {"Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"}
  20. },
  21. "autoload-dev": {
  22. "psr-4": {
  23. "DeprecationTests\\": "test_fixtures/src",
  24. "Doctrine\\Foo\\": "test_fixtures/vendor/doctrine/foo"
  25. }
  26. }
  27. }