-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.33 KB
/
composer.json
File metadata and controls
53 lines (53 loc) · 1.33 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
{
"name": "justmisha/php-multirunner",
"description": "The package gives the ability to run multiple processes (programs and scripts) in parallel in the background.",
"keywords": [
"php",
"multiple",
"processes",
"parallel",
"background",
"proc_open",
"multirunner"
],
"type": "library",
"license": "MIT",
"homepage": "https://github.com/JustMisha/php-multirunner",
"autoload": {
"psr-4": {
"JustMisha\\MultiRunner\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"JustMisha\\MultiRunner\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Mikhail Trusov",
"email": "admin@superprogrammist.ru"
}
],
"require": {
"php": ">=7.4"
},
"require-dev": {
"phpunit/phpunit": "9.6.*",
"phpstan/phpstan": ">=1.10",
"vimeo/psalm": ">=5",
"squizlabs/php_codesniffer": "*"
},
"scripts": {
"test": [
"@phpcs",
"@psalm",
"@phpstan",
"phpunit"
],
"psalm": "vendor/bin/psalm --show-info=true",
"phpcs": "vendor/bin/phpcs src -s",
"phpunit": "phpunit",
"phpstan": "vendor/bin/phpstan analyse src --level 9 --verbose"
}
}