-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
56 lines (56 loc) · 1.48 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
54
55
56
{
"name": "lyrasoft/cli",
"description": "LYRASOFT CLI",
"minimum-stability": "beta",
"type": "tool",
"license": "MIT",
"authors": [
{
"name": "Simon Asika",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.0",
"ext-dom": "*",
"ext-json": "*",
"ext-simplexml": "*",
"guzzlehttp/guzzle": "^7.0.1",
"http-interop/http-factory-guzzle": "^1.0",
"knplabs/github-api": "^3.0",
"psr/cache": "^2.0",
"squizlabs/php_codesniffer": "^3.0",
"stecman/symfony-console-completion": "^0.11.0||^0.12.0",
"symfony/console": "^4.0||^5.0||^6.0||^7.0",
"symfony/contracts": "^2.0||^3.0",
"symfony/process": "^4.0||^5.0||^6.0||^7.0",
"webmozart/glob": "^4.4",
"windwalker/attributes": "^4.0",
"windwalker/di": "^4.0",
"windwalker/environment": "^4.0",
"windwalker/event": "^4.0",
"windwalker/filesystem": "^4.0",
"windwalker/http": "^4.0",
"windwalker/utilities": "^4.0"
},
"require-dev": {
"roave/security-advisories": "dev-master"
},
"autoload": {
"psr-4": {
"Lyrasoft\\Cli\\": "src/",
"Windwalker\\Console\\": "windwalker/console/"
},
"files": [
"src/bootstrap.php"
]
},
"config": {
"platform": {
"php": "8.0.1"
}
},
"bin": [
"lyra"
]
}