-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (42 loc) · 1 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
{
"name": "jitesoft/cli",
"description": "CLI for PHP. Simple and easily extendable.",
"require": {
"php": ">=8",
"jitesoft/container": "^5.0.0"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/jitesoft"
},
{
"type": "opencollective",
"url": "https://opencollective.com/jitesoft-open-source"
}
],
"require-dev": {
"roave/security-advisories": "dev-latest",
"phpunit/phpunit": ">=10.0.x-dev",
"squizlabs/php_codesniffer": "^3.6"
},
"minimum-stability": "dev",
"prefer-stable": true,
"license": "MIT",
"autoload-dev": {
"psr-4": {
"Jitesoft\\Cli\\Arguments\\Tests\\": "tests/"
}
},
"autoload": {
"psr-4": {
"Jitesoft\\Cli\\": "src/"
}
},
"authors": [
{
"name": "Johannes Tegnér",
"email": "johannes@jitesoft.com"
}
]
}