composer.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "doctrine/deprecations",
  3. "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.",
  4. "license": "MIT",
  5. "type": "library",
  6. "homepage": "https://www.doctrine-project.org/",
  7. "require": {
  8. "php": "^7.1 || ^8.0"
  9. },
  10. "require-dev": {
  11. "doctrine/coding-standard": "^9 || ^12 || ^13",
  12. "phpstan/phpstan": "1.4.10 || 2.1.11",
  13. "phpstan/phpstan-phpunit": "^1.0 || ^2",
  14. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6 || ^10.5 || ^11.5 || ^12",
  15. "psr/log": "^1 || ^2 || ^3"
  16. },
  17. "conflict": {
  18. "phpunit/phpunit": "<=7.5 || >=13"
  19. },
  20. "suggest": {
  21. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  22. },
  23. "autoload": {
  24. "psr-4": {
  25. "Doctrine\\Deprecations\\": "src"
  26. }
  27. },
  28. "autoload-dev": {
  29. "psr-4": {
  30. "DeprecationTests\\": "test_fixtures/src",
  31. "Doctrine\\Foo\\": "test_fixtures/vendor/doctrine/foo"
  32. }
  33. },
  34. "config": {
  35. "allow-plugins": {
  36. "dealerdirect/phpcodesniffer-composer-installer": true
  37. }
  38. }
  39. }