forked from ytljc2003/neoan3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (46 loc) · 1.19 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
{
"name": "sroehrl/neoan3",
"version": "3.0.1",
"description": "the efficient PHP framework",
"minimum-stability": "dev",
"require": {
"php": "^7.4||8.*",
"ext-json": "*",
"mnsami/composer-custom-directory-installer": "1.1.*",
"neoan3-apps/template":"^1",
"neoan3-apps/db": "0.3.*",
"neoan3-apps/stateless": "^2",
"neoan3-apps/session": "1.0.*",
"ext-mbstring": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.3"
},
"license": "MIT",
"authors": [
{
"name": "neoan",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Neoan3\\Core\\": "./_neoan/base/",
"Neoan3\\Api\\": "./_neoan/api/",
"Neoan3\\Model\\": "./model/",
"Neoan3\\Component\\": "./component/",
"Neoan3\\Provider\\": "./provider/"
},
"files": [
"_neoan/base/_includes.php"
]
},
"extra": {
"installer-paths": {
"./frame/{$name}": [],
"./model/{$name}": [],
"./component/{$name}": [],
"./provider/{$name}": []
}
}
}