-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.44 KB
/
composer.json
File metadata and controls
51 lines (51 loc) · 1.44 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
{
"name": "bluepsyduck/symfony-process-manager",
"description": "A process manager for Symfony processes, able to run them in parallel.",
"homepage": "https://github.com/BluePsyduck/symfony-process-manager",
"type": "library",
"keywords": ["symfony", "process", "manager", "parallel"],
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "BluePsyduck",
"email": "bluepsyduck@gmx.com"
}
],
"minimum-stability": "stable",
"require": {
"php": "^7.2 || ^8.0",
"symfony/process": "^3.0 || ^4.0 || ^5.0 || ^6.0"
},
"require-dev": {
"bluepsyduck/test-helper": "^1.0",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpstan/phpstan-strict-rules": "^1.0",
"phpunit/phpunit": "^8.0 || ^9.0",
"rregeer/phpunit-coverage-check": "^0.3",
"squizlabs/php_codesniffer": "^3.3"
},
"autoload": {
"psr-4": {
"BluePsyduck\\SymfonyProcessManager\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"BluePsyduckTest\\SymfonyProcessManager\\": "test/src"
}
},
"scripts": {
"coverage-check": "coverage-check test/log/clover.xml 100",
"phpcbf": "phpcbf -p --colors",
"phpcs": "phpcs -p --colors",
"phpstan": "phpstan analyse --no-interaction --ansi",
"phpunit": "phpunit --colors=always --coverage-html=test/log --coverage-clover=test/log/clover.xml",
"test": [
"@phpunit",
"@coverage-check",
"@phpcs",
"@phpstan"
]
}
}