composer.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "symfony/phpunit-bridge",
  3. "type": "symfony-bridge",
  4. "description": "Provides utilities for PHPUnit, especially user deprecation notices management",
  5. "keywords": [],
  6. "homepage": "https://symfony.com",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Nicolas Grekas",
  11. "email": "p@tchwork.com"
  12. },
  13. {
  14. "name": "Symfony Community",
  15. "homepage": "https://symfony.com/contributors"
  16. }
  17. ],
  18. "require": {
  19. "php": ">=5.5.9 EVEN ON LATEST SYMFONY VERSIONS TO ALLOW USING",
  20. "php": "THIS BRIDGE WHEN TESTING LOWEST SYMFONY VERSIONS.",
  21. "php": ">=5.5.9"
  22. },
  23. "require-dev": {
  24. "symfony/deprecation-contracts": "^2.1",
  25. "symfony/error-handler": "^4.4|^5.0"
  26. },
  27. "suggest": {
  28. "symfony/error-handler": "For tracking deprecated interfaces usages at runtime with DebugClassLoader"
  29. },
  30. "conflict": {
  31. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0|<6.4,>=6.0|9.1.2"
  32. },
  33. "autoload": {
  34. "files": [ "bootstrap.php" ],
  35. "psr-4": { "Symfony\\Bridge\\PhpUnit\\": "" },
  36. "exclude-from-classmap": [
  37. "/Tests/"
  38. ]
  39. },
  40. "bin": [
  41. "bin/simple-phpunit"
  42. ],
  43. "minimum-stability": "dev",
  44. "extra": {
  45. "thanks": {
  46. "name": "phpunit/phpunit",
  47. "url": "https://github.com/sebastianbergmann/phpunit"
  48. }
  49. }
  50. }