composer.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "composer/xdebug-handler",
  3. "description": "Restarts a process without Xdebug.",
  4. "type": "library",
  5. "license": "MIT",
  6. "keywords": [
  7. "xdebug",
  8. "performance"
  9. ],
  10. "authors": [
  11. {
  12. "name": "John Stevenson",
  13. "email": "john-stevenson@blueyonder.co.uk"
  14. }
  15. ],
  16. "support": {
  17. "irc": "irc://irc.freenode.org/composer",
  18. "issues": "https://github.com/composer/xdebug-handler/issues"
  19. },
  20. "require": {
  21. "php": "^7.2.5 || ^8.0",
  22. "psr/log": "^1 || ^2 || ^3",
  23. "composer/pcre": "^1 || ^2 || ^3"
  24. },
  25. "require-dev": {
  26. "symfony/phpunit-bridge": "^6.0",
  27. "phpstan/phpstan": "^1.0",
  28. "phpstan/phpstan-strict-rules": "^1.1"
  29. },
  30. "autoload": {
  31. "psr-4": {
  32. "Composer\\XdebugHandler\\": "src"
  33. }
  34. },
  35. "autoload-dev": {
  36. "psr-4": {
  37. "Composer\\XdebugHandler\\Tests\\": "tests"
  38. }
  39. },
  40. "scripts": {
  41. "test": "@php vendor/bin/simple-phpunit",
  42. "phpstan": "@php vendor/bin/phpstan analyse"
  43. }
  44. }