You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

71 lines
2.1 KiB

3 years ago
  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": "^7.3 || ^8.0",
  18. "facade/ignition-contracts": "^1.0",
  19. "filp/whoops": "^2.7.2",
  20. "symfony/console": "^5.0"
  21. },
  22. "require-dev": {
  23. "brianium/paratest": "^6.1",
  24. "fideloper/proxy": "^4.4.1",
  25. "friendsofphp/php-cs-fixer": "^2.17.3",
  26. "fruitcake/laravel-cors": "^2.0.3",
  27. "laravel/framework": "^9.0",
  28. "nunomaduro/larastan": "^0.6.2",
  29. "nunomaduro/mock-final-classes": "^1.0",
  30. "orchestra/testbench": "^7.0",
  31. "phpstan/phpstan": "^0.12.64",
  32. "phpunit/phpunit": "^9.5.0"
  33. },
  34. "autoload-dev": {
  35. "psr-4": {
  36. "Tests\\Unit\\": "tests/Unit",
  37. "Tests\\FakeProgram\\": "tests/FakeProgram",
  38. "Tests\\": "tests/LaravelApp/tests",
  39. "App\\": "tests/LaravelApp/app/"
  40. }
  41. },
  42. "minimum-stability": "dev",
  43. "prefer-stable": true,
  44. "autoload": {
  45. "psr-4": {
  46. "NunoMaduro\\Collision\\": "src/"
  47. }
  48. },
  49. "config": {
  50. "preferred-install": "dist",
  51. "sort-packages": true
  52. },
  53. "extra": {
  54. "laravel": {
  55. "providers": [
  56. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  57. ]
  58. }
  59. },
  60. "scripts": {
  61. "lint": "php-cs-fixer fix -v --allow-risky=yes",
  62. "test:types": "phpstan analyse --ansi",
  63. "test:unit": "phpunit --colors=always",
  64. "test:lint": "php-cs-fixer fix -v --dry-run --allow-risky=yes",
  65. "test": [
  66. "@test:lint",
  67. "@test:types",
  68. "@test:unit"
  69. ]
  70. }
  71. }