forked from PHP-CS-Fixer/cli-executor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 889 Bytes
/
composer.json
File metadata and controls
36 lines (36 loc) · 889 Bytes
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
{
"name": "keradus/cli-executor",
"type": "library",
"description": "CLI execution wrapper",
"license": "MIT",
"authors": [
{
"name": "Dariusz Rumiński",
"email": "dariusz.ruminski@gmail.com"
}
],
"require": {
"php": "^7.1.3 || ^8.0",
"symfony/process": "^4.4 || ^5 || ^6"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.1",
"maglnet/composer-require-checker": "^2 || ^3",
"phpunit/phpunit": "^7.5.20 || ^8.5.14 || ^9.5",
"symfony/phpunit-bridge": "^5.3.7 || ^6"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"autoload": {
"psr-4": {
"Keradus\\CliExecutor\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Keradus\\Tests\\": "tests/"
}
}
}