-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 883 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 883 Bytes
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
{
"name": "microphp/framework",
"autoload": {
"psr-4": {
"MicroPHP\\Framework\\": "src/"
},
"files": [
"src/functons.php"
]
},
"autoload-dev": {
"psr-4": {
"MicroPHP\\Framework\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "liutao",
"email": "gg.cn.lt@gmail.com"
}
],
"require": {
"php": ">=8.0",
"guzzlehttp/psr7": "^2.6",
"league/container": "^4.0",
"league/route": "^5.0",
"illuminate/database": "^9.0",
"symfony/console": "^6",
"symfony/process": "^6",
"symfony/finder": "^6",
"guzzlehttp/guzzle": "^7.7",
"symfony/dotenv": "^6.0",
"monolog/monolog": "^3.4",
"ext-simplexml": "*",
"symfony/validator": "^7.2"
}
}