-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
57 lines (57 loc) · 1.73 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
{
"name": "veewee/composer-run-parallel",
"description": "Run composer tasks in parallel",
"keywords": ["composer", "plugin", "parallel", "run", "taskmanager"],
"type": "composer-plugin",
"license": "MIT",
"authors": [
{
"name": "Toon Verwerft",
"email": "[email protected]"
}
],
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
"composer-plugin-api": "~2.0"
},
"require-dev": {
"composer/composer": "^2.0",
"react/promise": "1.2.1",
"symfony/process": "2.8.52"
},
"autoload": {
"psr-4": {
"ComposerRunParallel\\": "src/"
}
},
"autolaod-dev": {
"psr-4": {
"ComposerRunParallel\\Test\\": "tests/"
}
},
"extra": {
"class": "ComposerRunParallel\\ParallelPlugin"
},
"scripts": {
"parallel": "ComposerRunParallel\\Scripts\\ParallelScript::initializeAndRun",
"cs": "@fix-cs --dry-run",
"fix-cs": "PHP_CS_FIXER_IGNORE_ENV=1 ./tools/php-cs-fixer.phar fix",
"psalm": "./tools/psalm.phar",
"tests": "./tools/phpunit.phar",
"coverage": "@php ./tools/full-coverage-check.php .phpunit.cache/clover/clover.xml",
"infection": [
"Composer\\Config::disableProcessTimeout",
"./tools/infection.phar"
],
"ci": [
"@parallel psalm cs tests",
"@parallel coverage infection"
],
"functional": "@parallel fun1 fun2",
"fun1": "@php -r \"sleep(3); echo '1';\"",
"fun2": "@php -r \"echo '2';\""
},
"scripts-descriptions": {
"parallel": "Makes it possible to run composer scripts in parallel"
}
}