generated from pestphp/pest-plugin-template
-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
74 lines (74 loc) · 1.84 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
{
"name": "spatie/pest-plugin-route-testing",
"description": "Make sure all routes in your Laravel app are ok",
"keywords": [
"php",
"framework",
"pest",
"unit",
"test",
"testing",
"plugin",
"spatie",
"dev"
],
"license": "MIT",
"authors": [
{
"name": "Niels Vanpachtenbeke",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Alex Vanderbist",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Freek Van der Herten",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"nunomaduro/termwind": "^1.15.1|^2.1",
"pestphp/pest": "^2.34.9|^3.0.6",
"pestphp/pest-plugin": "^2.1.1|^3.0",
"spatie/laravel-package-tools": "^1.16.5"
},
"require-dev": {
"laravel/pint": "^1.17.3",
"orchestra/testbench": "^8.24|^9.4",
"pestphp/pest-dev-tools": "^2.16|^3.0"
},
"autoload": {
"psr-4": {
"Spatie\\RouteTesting\\": "src/"
},
"files": [
"src/Autoload.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"preferred-install": "dist",
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"scripts": {
"analyse": "./vendor/bin/phpstan analyse",
"baseline": "./vendor/bin/phpstan analyse --generate-baseline",
"lint": "pint",
"rector": "./vendor/bin/rector --dry-run",
"test": "./vendor/bin/pest --compact"
}
}