-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
75 lines (75 loc) · 2.23 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "nhzex/think-blade",
"description": "Use Laravel Blade templates without the full Laravel framework",
"keywords": [
"thinkphp",
"thinkphp6",
"thinkphp8",
"blade"
],
"type": "library",
"license": "Apache-2.0",
"authors": [
{
"name": "auooru",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": "^8.0",
"ext-fileinfo": "*",
"ext-json": "*",
"ext-mbstring": "*",
"psr/container": "^1.1.1|^2.0.1",
"psr/simple-cache": "^1.0|^2.0|^3.0",
"symfony/finder": "^6.0",
"topthink/framework": "^6.1|^8.0",
"topthink/think-helper": "^3.1.6"
},
"require-dev": {
"phpunit/phpunit": "^9",
"topthink/think-template": "^2.0",
"bamarni/composer-bin-plugin": "^1.8",
"php-cs-fixer/shim": "^3.22",
"symfony/mime": "^6.0",
"phpstan/phpstan": "^1.10",
"rector/rector": "^0.17.12"
},
"replace": {
"illuminate/contracts": "~9.52.15",
"illuminate/container": "~9.52.15",
"illuminate/collections": "~9.52.15",
"illuminate/support": "~9.52.15",
"illuminate/view": "~9.52.15"
},
"suggest": {
"ramsey/uuid": "Required to use Str::uuid() (^3.7).",
"doctrine/inflector": "Required to use the pluralizer (^2.0).",
"voku/portable-ascii": "Required to enable support for string ascii extensions (^2.0).",
"nesbot/carbon": "nesbot/carbon=^2.62.1",
"symfony/mime": "Required to enable support for guessing extensions (^6.0).",
"symfony/var-dumper": "Required to use the dd function (^6.0)."
},
"autoload": {
"psr-4": {
"think\\view\\driver\\": "driver",
"Zxin\\Think\\Blade\\": "src-next",
"Illuminate\\Filesystem\\": "lib/filesystem"
},
"files": [
"third-party/vendor/scoper-autoload.php"
]
},
"autoload-dev": {
"psr-4": {
"HZEX\\BladeTest\\": "tests/"
}
},
"config": {
"sort-packages": false,
"allow-plugins": {
"bamarni/composer-bin-plugin": true
}
}
}