forked from pestphp/pest-plugin-laravel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
62 lines (62 loc) · 1.33 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
{
"name": "pestphp/pest-plugin-laravel",
"description": "The Pest Laravel Plugin",
"keywords": [
"php",
"framework",
"pest",
"unit",
"test",
"testing",
"laravel"
],
"license": "MIT",
"require": {
"php": "^8.1.0",
"laravel/framework": "^10.27.0|^11.0",
"pestphp/pest": "^2.22.0"
},
"autoload": {
"psr-4": {
"Pest\\Laravel\\": "src/"
},
"files": [
"src/Autoload.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require-dev": {
"laravel/dusk": "^7.11.1",
"orchestra/testbench": "^8.13.0",
"pestphp/pest-dev-tools": "^2.16.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"preferred-install": "dist",
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"extra": {
"laravel": {
"providers": [
"Pest\\Laravel\\PestServiceProvider"
]
}
},
"scripts": {
"lint": "pint",
"test:lint": "pint --test",
"test:unit": "pest --colors=always",
"test": [
"@test:lint",
"@test:unit"
]
}
}