|
1 | 1 | { |
2 | | - "name": "phpsu/shellcommandbuilder", |
3 | | - "description": "Fluid Builder to create shell commands", |
4 | | - "type": "library", |
5 | | - "config": { |
6 | | - "optimize-autoloader": true, |
7 | | - "process-timeout": 0 |
8 | | - }, |
9 | | - "require-dev": { |
10 | | - "phpunit/phpunit": "^8.5 || ^9.4", |
11 | | - "vimeo/psalm": "^4.1", |
12 | | - "infection/infection": "^0.15.3 || ^0.18.2 || ^0.20.1", |
13 | | - "spatie/phpunit-watcher": "^1.24 || dev-master#071fbbf", |
14 | | - "phpunit/php-invoker": "^2.0 || ^3.1", |
15 | | - "pluswerk/grumphp-config": "^4.0.1" |
16 | | - }, |
17 | | - "license": "MIT", |
18 | | - "authors": [ |
19 | | - { |
20 | | - "name": "Christian Rodriguez Benthake", |
21 | | - "email": "git@cben.co" |
22 | | - } |
23 | | - ], |
24 | | - "autoload": { |
25 | | - "psr-4": { |
26 | | - "PHPSu\\ShellCommandBuilder\\": "src" |
27 | | - } |
28 | | - }, |
29 | | - "autoload-dev": { |
30 | | - "psr-4": { |
31 | | - "PHPSu\\ShellCommandBuilder\\Tests\\": "tests" |
32 | | - } |
33 | | - }, |
34 | | - "scripts": { |
35 | | - "test": "vendor/bin/phpunit -c tests/phpunit.xml --testdox --color=always", |
36 | | - "test:watch": "vendor/bin/phpunit-watcher watch -c tests/phpunit.xml --testdox", |
37 | | - "infection": "vendor/bin/infection --threads=4 --only-covered --min-msi=100 --min-covered-msi=100 --ansi", |
38 | | - "psalm": "vendor/bin/psalm" |
39 | | - }, |
40 | | - "minimum-stability": "stable", |
41 | | - "require": { |
42 | | - "php": ">=7.2", |
43 | | - "ext-json": "*" |
44 | | - }, |
45 | | - "extra": { |
46 | | - "pluswerk/grumphp-config": { |
47 | | - "auto-setting": false |
48 | | - }, |
49 | | - "grumphp": { |
50 | | - "config-default-path": "vendor/pluswerk/grumphp-config/grumphp.yml" |
51 | | - } |
| 2 | + "name": "phpsu/shellcommandbuilder", |
| 3 | + "description": "Fluid Builder to create shell commands", |
| 4 | + "license": "MIT", |
| 5 | + "type": "library", |
| 6 | + "authors": [ |
| 7 | + { |
| 8 | + "name": "Christian Rodriguez Benthake", |
| 9 | + "email": "git@cben.co" |
| 10 | + } |
| 11 | + ], |
| 12 | + "require": { |
| 13 | + "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0", |
| 14 | + "ext-json": "*" |
| 15 | + }, |
| 16 | + "require-dev": { |
| 17 | + "infection/infection": "^0.28.1 || ^0.29.14", |
| 18 | + "phpunit/phpunit": "^10.0 || ^12.0", |
| 19 | + "pluswerk/grumphp-config": "^7 || ^10", |
| 20 | + "spatie/phpunit-watcher": "^1.24 || dev-master#071fbbf" |
| 21 | + }, |
| 22 | + "minimum-stability": "stable", |
| 23 | + "autoload": { |
| 24 | + "psr-4": { |
| 25 | + "PHPSu\\ShellCommandBuilder\\": "src" |
52 | 26 | } |
| 27 | + }, |
| 28 | + "autoload-dev": { |
| 29 | + "psr-4": { |
| 30 | + "PHPSu\\ShellCommandBuilder\\Tests\\": "tests" |
| 31 | + } |
| 32 | + }, |
| 33 | + "config": { |
| 34 | + "allow-plugins": { |
| 35 | + "ergebnis/composer-normalize": true, |
| 36 | + "infection/extension-installer": true, |
| 37 | + "phpro/grumphp": true, |
| 38 | + "phpstan/extension-installer": true, |
| 39 | + "pluswerk/grumphp-config": true |
| 40 | + }, |
| 41 | + "optimize-autoloader": true, |
| 42 | + "process-timeout": 0 |
| 43 | + }, |
| 44 | + "scripts": { |
| 45 | + "infection": "XDEBUG_MODE=coverage vendor/bin/infection --threads=4 --only-covered --min-msi=99 --min-covered-msi=99 --ansi", |
| 46 | + "test": "XDEBUG_MODE=coverage vendor/bin/phpunit -c tests/phpunit.xml --testdox --color=always", |
| 47 | + "test:watch": "XDEBUG_MODE=coverage vendor/bin/phpunit-watcher watch -c tests/phpunit.xml --testdox" |
| 48 | + } |
53 | 49 | } |
0 commit comments