-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 1.08 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
{
"name": "imiphp/imi-smarty",
"type": "library",
"license": "MIT",
"description": "支持在 imi 框架中使用 Smarty 模版引擎",
"require": {
"php": ">=7.4 <8.2",
"smarty/smarty": "~3.1"
},
"require-dev": {
"phpunit/phpunit": "~9.6"
},
"autoload": {
"psr-4": {
"Imi\\Smarty\\": "src/"
},
"files": [
"src/smarty-plugins/smarty_internal_compile_private_special_variable.php"
]
},
"autoload-dev": {
"psr-4": {
"Imi\\Smarty\\Example\\": "example/",
"Imi\\Smarty\\Test\\": "tests/unit/",
"Imi\\Smarty\\Dev\\": "dev/"
},
"files": [
"../../../vendor/autoload.php",
"../../../dev/try-include-swoole.php"
]
},
"scripts": {
"pre-install-cmd": "Imi\\Smarty\\Dev\\Dev::preUpdate",
"pre-update-cmd": "Imi\\Smarty\\Dev\\Dev::preUpdate",
"post-install-cmd": "Imi\\Smarty\\Dev\\Dev::postUpdate",
"post-update-cmd": "Imi\\Smarty\\Dev\\Dev::postUpdate"
}
}