-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
42 lines (42 loc) · 1.04 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
{
"name": "isszz/think-blade",
"description": "thinkphp8 blade view engine",
"license": "MIT",
"authors": [
{
"name": "isszz",
"email": "isszz@qq.com"
}
],
"require": {
"php": "^8.0",
"ext-json": "*",
"ext-fileinfo": "*",
"ext-mbstring": "*",
"topthink/framework": "8.*"
},
"autoload": {
"files": [
"src/helper.php",
"src/Support/helpers.php"
],
"psr-4": {
"think\\blade\\": "src",
"think\\view\\driver\\": "src",
"Illuminate\\Container\\": "src/Container",
"Illuminate\\Contracts\\": "src/Contracts",
"Illuminate\\Support\\": "src/Support",
"Illuminate\\Filesystem\\": "src/Filesystem",
"Illuminate\\View\\": "src/View"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-master": "dev-dev"
}
}
}