-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.45 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.45 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
{
"name": "codeception/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": "^8.2",
"consolidation/robo": "5.1.*",
"symfony/finder": ">=6.1 <8.0",
"ext-dom": "*",
"ext-libxml": "*",
"ext-json": "*"
},
"autoload-dev": {
"psr-4": {
"Tests\\Codeception\\Task\\": "tests/"
}
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"codeception/codeception": "^5.3",
"squizlabs/php_codesniffer": "^3.6.0",
"overtrue/phplint": ">=9.5",
"friendsofphp/php-cs-fixer": "^3.0.0",
"phpunit/phpunit": ">=11",
"rector/rector": "^2.1",
"codeception/phpunit-wrapper": "^9.0.6"
},
"config": {
"platform": {
"php": "8.2.0"
}
},
"scripts": {
"unit": "vendor/bin/phpunit --bootstrap tests/bootstrap.php tests/ --exclude-group example --stderr --debug",
"lint": "vendor/bin/phplint -v ./ --exclude=vendor",
"codestyle": "vendor/bin/phpcs --standard=PSR12 ./src",
"test": [
"@lint",
"@codestyle",
"@unit"
]
}
}