-
Notifications
You must be signed in to change notification settings - Fork 51
/
composer.json
51 lines (51 loc) · 1.12 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
{
"name": "axios/tpr-cms",
"description": "design for api development",
"type": "project",
"version": "3.0.0",
"keywords": [
"framework",
"ORM",
"Api",
"CMS"
],
"homepage": "https://github.com/AxiosCros/tpr-cms",
"license": "MIT",
"authors": [
{
"name": "axios",
"email": "axioscros@aliyun.com"
}
],
"support": {
"issues": "https://github.com/AxiosCros/tpr-cms/issues"
},
"require": {
"php": ">=8.1",
"axios/tpr-db": "^1.1",
"axios/tpr": "^5.3.0",
"minphp/session": "^1.2",
"tmarois/filebase": "^1.0",
"ext-gd": "*"
},
"require-dev": {
"symfony/var-dumper": "*",
"nette/php-generator": "^3.5",
"friendsofphp/php-cs-fixer": "^3.16"
},
"autoload": {
"psr-4": {
"library\\": "library/",
"api\\": "application/api/",
"admin\\": "application/admin/",
"Gregwar\\": "library/Gregwar"
},
"files": [
"library/helper.php"
]
},
"scripts": {
"start": "echo http://localhost:8088 && php -S localhost:8088 -t public/",
"fix": "vendor/bin/php-cs-fixer fix . --config=.php_cs.dist.php"
}
}