-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
53 lines (53 loc) · 1.55 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
{
"name": "phpsu/shellcommandbuilder",
"description": "Fluid Builder to create shell commands",
"type": "library",
"config": {
"optimize-autoloader": true,
"process-timeout": 0
},
"require-dev": {
"phpunit/phpunit": "^8.5 || ^9.4",
"vimeo/psalm": "^4.1",
"infection/infection": "^0.15.3 || ^0.18.2 || ^0.20.1",
"spatie/phpunit-watcher": "^1.24 || dev-master#071fbbf",
"phpunit/php-invoker": "^2.0 || ^3.1",
"pluswerk/grumphp-config": "^4.0.1"
},
"license": "MIT",
"authors": [
{
"name": "Christian Rodriguez Benthake",
"email": "git@cben.co"
}
],
"autoload": {
"psr-4": {
"PHPSu\\ShellCommandBuilder\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"PHPSu\\ShellCommandBuilder\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit -c tests/phpunit.xml --testdox --color=always",
"test:watch": "vendor/bin/phpunit-watcher watch -c tests/phpunit.xml --testdox",
"infection": "vendor/bin/infection --threads=4 --only-covered --min-msi=100 --min-covered-msi=100 --ansi",
"psalm": "vendor/bin/psalm"
},
"minimum-stability": "stable",
"require": {
"php": ">=7.2",
"ext-json": "*"
},
"extra": {
"pluswerk/grumphp-config": {
"auto-setting": false
},
"grumphp": {
"config-default-path": "vendor/pluswerk/grumphp-config/grumphp.yml"
}
}
}