-
-
Notifications
You must be signed in to change notification settings - Fork 164
/
composer.json
92 lines (92 loc) · 2.65 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"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": "[email protected]"
}
],
"require": {
"php": "^8.2.0",
"filp/whoops": "^2.16.0",
"nunomaduro/termwind": "^2.1.0",
"symfony/console": "^7.1.5"
},
"conflict": {
"laravel/framework": "<11.0.0 || >=12.0.0",
"phpunit/phpunit": "<10.5.1 || >=12.0.0"
},
"require-dev": {
"laravel/framework": "^11.28.0",
"laravel/pint": "^1.18.1",
"laravel/tinker": "^2.10.0",
"laravel/sail": "^1.36.0",
"laravel/sanctum": "^4.0.3",
"larastan/larastan": "^2.9.8",
"orchestra/testbench-core": "^9.5.3",
"pestphp/pest": "^2.36.0 || ^3.4.0",
"sebastian/environment": "^6.1.0 || ^7.2.0"
},
"autoload-dev": {
"psr-4": {
"Tests\\Printer\\": "tests/Printer",
"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/"
},
"files": [
"./src/Adapters/Phpunit/Autoload.php"
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"extra": {
"laravel": {
"providers": [
"NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
]
},
"branch-alias": {
"dev-8.x": "8.x-dev"
}
},
"scripts": {
"lint": "pint -v",
"test:lint": "pint --test -v",
"test:types": "phpstan analyse --ansi",
"test:unit:phpunit": [
"@putenv XDEBUG_MODE=coverage",
"phpunit --colors=always"
],
"test:unit:pest": [
"@putenv XDEBUG_MODE=coverage",
"pest --colors=always -v"
],
"test": [
"@test:lint",
"@test:types",
"@test:unit:phpunit",
"@test:unit:pest"
]
}
}