-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
46 lines (46 loc) · 1009 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
42
43
44
45
46
{
"name": "ljw/framework",
"description": "my framework",
"keywords": [
"framework",
"ljw"
],
"type": "project",
"homepage": "http://github.com/lejianwen/FMZ_framework",
"license": "MIT",
"require": {
"php": ">=8.0",
"filp/whoops": "^2.1.4",
"guzzlehttp/guzzle": "~6.0",
"illuminate/database": "~v8.0",
"ljw/route": "dev-master",
"ljw/validator": "dev-master",
"monolog/monolog": "~1.22",
"smarty/smarty": "~v5.3",
"symfony/http-foundation": "~7.1",
"symfony/var-dumper": "~v6.4",
"vlucas/phpdotenv": "~v5.6"
},
"autoload": {
"psr-4": {
"app\\": "app/",
"lib\\": "lib/"
},
"classmap": [
"bootstrap"
],
"files": [
"common/functions.php"
]
},
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
}
}