-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.46 KB
/
composer.json
File metadata and controls
58 lines (58 loc) · 1.46 KB
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
{
"name": "jackbayliss/laravel-dusk-parallel",
"description": "Parallel test execution for Laravel Dusk.",
"keywords": [
"laravel",
"dusk",
"testing",
"parallel"
],
"license": "MIT",
"authors": [
{
"name": "Jack Bayliss",
"email": "jjbdev@proton.me"
}
],
"require": {
"php": "^8.1",
"laravel/dusk": "^8.0|^9.0"
},
"require-dev": {
"brianium/paratest": "^7.0|^8.0",
"laravel/pint": "^1.0",
"orchestra/testbench": "^8.0|^9.0|^10.0",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^10.5|^11.0"
},
"suggest": {
"brianium/paratest": "Required for PHPUnit parallel execution. Not needed when using Pest --parallel."
},
"autoload": {
"psr-4": {
"JackBayliss\\DuskParallel\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"JackBayliss\\DuskParallel\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"JackBayliss\\DuskParallel\\DuskParallelServiceProvider"
]
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"lint": "vendor/bin/pint --parallel --preset=laravel",
"analyse": "vendor/bin/phpstan analyse --memory-limit=512M"
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}