-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
41 lines (41 loc) · 980 Bytes
/
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
{
"name": "neoan3/neoan3",
"homepage": "https://neoan3.rocks",
"description": "official neoan3 cli",
"type": "library",
"minimum-stability": "stable",
"license": "MIT",
"bin": [
"bin/neoan3"
],
"autoload": {
"psr-4": {
"Add\\": "Add",
"Creation\\": "Creation",
"Migration\\": "Migration",
"Cli\\": "Cli",
"Set\\": "Set",
"Helper\\": "Helper",
"Credentials\\": "Credentials"
}
},
"authors": [
{
"name": "sroehrl",
"email": "[email protected]"
}
],
"require": {
"ext-zip": "*",
"neoan3-apps/template": "^1.0",
"neoan3-apps/ops": "^2.0",
"ext-readline": "*",
"ext-json": "*",
"composer/composer": "2.1.9",
"neoan3-apps/db": "^0.3",
"ext-mbstring": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.3"
}
}