forked from Codeception/robo-paracept
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1.34 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
{
"name": "magdv/robo-paracept",
"description": "Codeception Parallel Execution Tasks via Robo Task Runner",
"license": "MIT",
"authors": [
{
"name": "Davert",
"email": "davert@codeception.com"
}
],
"autoload":{
"psr-4":{
"Codeception\\Task\\":"src/"
}
},
"require": {
"php": "^7.4 | ^8.0",
"consolidation/robo": "3.0.*",
"symfony/finder": ">=2.7 <6.0",
"ext-dom": "*",
"ext-libxml": "*",
"ext-json": "*"
},
"autoload-dev": {
"psr-4": {
"Tests\\Codeception\\Task\\": "tests/"
}
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"codeception/codeception": "4.1.*",
"squizlabs/php_codesniffer": "^3.6.0",
"overtrue/phplint": "^3.0.0",
"friendsofphp/php-cs-fixer": "^3.0.0",
"phpunit/phpunit": ">=9.0",
"codeception/phpunit-wrapper": "^9.0.6"
},
"scripts": {
"unit": "vendor/bin/phpunit --bootstrap tests/bootstrap.php tests/ --exclude-group example --stderr -v --debug",
"lint": "vendor/bin/phplint -v ./ --exclude=vendor",
"codestyle": "vendor/bin/phpcs --standard=PSR12 ./src",
"test": [
"@lint",
"@codestyle",
"@unit"
]
}
}