-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 977 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
{
"name": "seunex17/codeigniter4-smarty",
"description": "A smarty template engine for Codeigniter4",
"license": "MIT",
"type": "library",
"keywords": [
"seunex17",
"codeigniter4",
"smarty",
"template"
],
"autoload": {
"psr-4": {
"Seunex17\\Codeigniter4Smarty\\": "src/"
}
},
"authors": [
{
"name": "seunex17",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"codeigniter4/devkit": "^1.1"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"scripts": {
"cs-fix": "php-cs-fixer fix --ansi --verbose --diff"
},
"require": {
"php": "^7.4 || ^8.0",
"codeigniter4/framework": "^4.0",
"codeigniter4/settings": "^2.2",
"smarty/smarty": "^5.0"
}
}