generated from pestphp/pest-plugin-template
-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
70 lines (70 loc) · 1.68 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
{
"name": "pestphp/pest-plugin-parallel",
"description": "The Pest Parallel Plugin",
"keywords": [
"php",
"framework",
"pest",
"unit",
"test",
"testing",
"plugin",
"parallel"
],
"license": "MIT",
"require": {
"php": "^7.3 || ^8.0",
"brianium/paratest": "^6.8.1",
"pestphp/pest-plugin": "^1.1.0"
},
"require-dev": {
"pestphp/pest": "^1.22.3",
"pestphp/pest-dev-tools": "^1.0.0"
},
"conflict": {
"pestphp/pest": "<1.16",
"nunomaduro/collision": "<5.8",
"laravel/framework": "<8.55"
},
"autoload": {
"psr-4": {
"Pest\\Parallel\\": "src/"
},
"exclude-from-classmap": [
"ParaTest\\Runners\\PHPUnit\\Worker\\RunnerWorker",
"ParaTest\\Runners\\PHPUnit\\BaseRunner"
],
"files": [
"src/Autoload.php",
"build/RunnerWorker.php",
"build/BaseRunner.php"
]
},
"extra": {
"pest": {
"plugins": [
"Pest\\Parallel\\Plugin"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"preferred-install": "dist",
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"scripts": {
"lint": "php-cs-fixer fix -v",
"test:lint": "php-cs-fixer fix -v --dry-run",
"test:types": "phpstan analyse --ansi",
"test:unit": "pest --colors=always",
"test": [
"@test:lint",
"@test:types",
"@test:unit"
]
}
}