composer.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. {
  2. "name": "nunomaduro/collision",
  3. "description": "Cli error handling for console/command-line PHP applications.",
  4. "keywords": ["console", "command-line", "php", "cli", "error", "handling", "laravel-zero", "laravel", "artisan", "symfony"],
  5. "license": "MIT",
  6. "support": {
  7. "issues": "https://github.com/nunomaduro/collision/issues",
  8. "source": "https://github.com/nunomaduro/collision"
  9. },
  10. "authors": [
  11. {
  12. "name": "Nuno Maduro",
  13. "email": "enunomaduro@gmail.com"
  14. }
  15. ],
  16. "require": {
  17. "php": "^8.0.0",
  18. "filp/whoops": "^2.14.5",
  19. "symfony/console": "^6.0.2"
  20. },
  21. "require-dev": {
  22. "brianium/paratest": "^6.4.1",
  23. "laravel/framework": "^9.26.1",
  24. "laravel/pint": "^1.1.1",
  25. "nunomaduro/larastan": "^1.0.3",
  26. "nunomaduro/mock-final-classes": "^1.1.0",
  27. "orchestra/testbench": "^7.7",
  28. "phpunit/phpunit": "^9.5.23",
  29. "spatie/ignition": "^1.4.1"
  30. },
  31. "autoload-dev": {
  32. "psr-4": {
  33. "Tests\\Unit\\": "tests/Unit",
  34. "Tests\\FakeProgram\\": "tests/FakeProgram",
  35. "Tests\\": "tests/LaravelApp/tests",
  36. "App\\": "tests/LaravelApp/app/"
  37. }
  38. },
  39. "minimum-stability": "dev",
  40. "prefer-stable": true,
  41. "autoload": {
  42. "psr-4": {
  43. "NunoMaduro\\Collision\\": "src/"
  44. }
  45. },
  46. "config": {
  47. "preferred-install": "dist",
  48. "sort-packages": true,
  49. "allow-plugins": {
  50. "pestphp/pest-plugin": true
  51. }
  52. },
  53. "extra": {
  54. "branch-alias": {
  55. "dev-develop": "6.x-dev"
  56. },
  57. "laravel": {
  58. "providers": [
  59. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  60. ]
  61. }
  62. },
  63. "scripts": {
  64. "lint": "pint -v",
  65. "test:lint": "pint --test -v",
  66. "test:types": "phpstan analyse --ansi",
  67. "test:unit": "phpunit --colors=always",
  68. "test": [
  69. "@test:lint",
  70. "@test:types",
  71. "@test:unit"
  72. ]
  73. }
  74. }