composer.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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. "phpstan/phpstan": "1.4.10 || 1.10.15",
  13. "phpstan/phpstan-phpunit": "^1.0",
  14. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  15. "psalm/plugin-phpunit": "0.18.4",
  16. "psr/log": "^1 || ^2 || ^3",
  17. "vimeo/psalm": "4.30.0 || 5.12.0"
  18. },
  19. "suggest": {
  20. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  21. },
  22. "autoload": {
  23. "psr-4": {
  24. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  25. }
  26. },
  27. "autoload-dev": {
  28. "psr-4": {
  29. "DeprecationTests\\": "test_fixtures/src",
  30. "Doctrine\\Foo\\": "test_fixtures/vendor/doctrine/foo"
  31. }
  32. },
  33. "config": {
  34. "allow-plugins": {
  35. "dealerdirect/phpcodesniffer-composer-installer": true
  36. }
  37. }
  38. }