-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 860 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 860 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
{
"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.4 || ^8.0",
"symfony/process": "^5.4 || ^6.4 || ^7.3 || ^8.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.89",
"maglnet/composer-require-checker": "^3.8 || ^4.18",
"phpunit/phpunit": "^9.6.22 || ^10.5.58 || ^11.5.43"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"autoload": {
"psr-4": {
"Keradus\\CliExecutor\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Keradus\\Tests\\": "tests/"
}
}
}