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
71 lines
2.1 KiB
{
|
|
"name": "nunomaduro/collision",
|
|
"description": "Cli error handling for console/command-line PHP applications.",
|
|
"keywords": ["console", "command-line", "php", "cli", "error", "handling", "laravel-zero", "laravel", "artisan", "symfony"],
|
|
"license": "MIT",
|
|
"support": {
|
|
"issues": "https://github.com/nunomaduro/collision/issues",
|
|
"source": "https://github.com/nunomaduro/collision"
|
|
},
|
|
"authors": [
|
|
{
|
|
"name": "Nuno Maduro",
|
|
"email": "enunomaduro@gmail.com"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": "^7.3 || ^8.0",
|
|
"facade/ignition-contracts": "^1.0",
|
|
"filp/whoops": "^2.7.2",
|
|
"symfony/console": "^5.0"
|
|
},
|
|
"require-dev": {
|
|
"brianium/paratest": "^6.1",
|
|
"fideloper/proxy": "^4.4.1",
|
|
"friendsofphp/php-cs-fixer": "^2.17.3",
|
|
"fruitcake/laravel-cors": "^2.0.3",
|
|
"laravel/framework": "^9.0",
|
|
"nunomaduro/larastan": "^0.6.2",
|
|
"nunomaduro/mock-final-classes": "^1.0",
|
|
"orchestra/testbench": "^7.0",
|
|
"phpstan/phpstan": "^0.12.64",
|
|
"phpunit/phpunit": "^9.5.0"
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Tests\\Unit\\": "tests/Unit",
|
|
"Tests\\FakeProgram\\": "tests/FakeProgram",
|
|
"Tests\\": "tests/LaravelApp/tests",
|
|
"App\\": "tests/LaravelApp/app/"
|
|
}
|
|
},
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true,
|
|
"autoload": {
|
|
"psr-4": {
|
|
"NunoMaduro\\Collision\\": "src/"
|
|
}
|
|
},
|
|
"config": {
|
|
"preferred-install": "dist",
|
|
"sort-packages": true
|
|
},
|
|
"extra": {
|
|
"laravel": {
|
|
"providers": [
|
|
"NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
|
|
]
|
|
}
|
|
},
|
|
"scripts": {
|
|
"lint": "php-cs-fixer fix -v --allow-risky=yes",
|
|
"test:types": "phpstan analyse --ansi",
|
|
"test:unit": "phpunit --colors=always",
|
|
"test:lint": "php-cs-fixer fix -v --dry-run --allow-risky=yes",
|
|
"test": [
|
|
"@test:lint",
|
|
"@test:types",
|
|
"@test:unit"
|
|
]
|
|
}
|
|
}
|