-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
67 lines (67 loc) · 1.57 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
{
"name": "manuelgil/ci4-twig",
"description": "🔥 Boilerplate: Twig template engine for CodeIgniter 4 framework",
"license": "MIT",
"type": "project",
"keywords": [
"ci-4",
"ci",
"ci4",
"codeigniter 4",
"codeigniter-4",
"codeigniter",
"codeigniter4",
"framework",
"mvc",
"php",
"template engine",
"template",
"twig template engine",
"twig-template-engine",
"twig"
],
"authors": [
{
"name": "ManuelGil",
"email": "support@imgil.dev",
"role": "Developer"
}
],
"support": {
"forum": "https://forum.codeigniter.com/",
"source": "https://github.com/codeigniter4/CodeIgniter4",
"slack": "https://codeigniterchat.slack.com"
},
"require": {
"php": "^8.1",
"codeigniter4/framework": "^4.0",
"codeigniter4/translations": "^4.0",
"twig/twig": "^3.4"
},
"require-dev": {
"fakerphp/faker": "^1.9",
"mikey179/vfsstream": "^1.6",
"phpunit/phpunit": "^10.5.18"
},
"autoload": {
"psr-4": {
"App\\": "app/"
},
"exclude-from-classmap": [
"**/Database/Migrations/**"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\Support\\": "tests/_support"
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"scripts": {
"test": "phpunit"
}
}