-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
52 lines (51 loc) · 1.34 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
{
"name": "vastn3/v2",
"version": "1.0.0",
"description": "SSR frackend",
"minimum-stability": "dev",
"require": {
"php": "^7.4||8.*",
"ext-json": "*",
"mnsami/composer-custom-directory-installer": "1.1.*",
"neoan3-apps/template":"^1.1.0",
"neoan3-apps/ops": "2.0.0",
"neoan3-apps/db": "0.3.4",
"neoan3-apps/stateless": "^2",
"neoan3-apps/session": "1.0.*",
"ext-mbstring": "*",
"ext-libxml": "*",
"ext-dom": "*",
"neoan3-apps/cache": "dev-master",
"auth0/auth0-php": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"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}": []
}
}
}