-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
45 lines (45 loc) · 898 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
43
44
45
{
"name": "raizdev/twig-codeigniter4",
"description": "twig for Codeigniter 4",
"keywords":
[
"codeigniter", "twig", "templates", "codeigniter4", "html"
],
"homepage": "https://github.com/raizdev/twig-codeigniter4",
"authors":
[
{
"name": "Raizer",
"homepage": "https://github.com/raizdev",
"role": "Developer"
}
],
"license": "MIT",
"require":
{
"php": ">=7.2",
"twig/twig": "^3.1.1"
},
"require-dev":
{
"phpunit/phpunit" : "8.5.*",
"codeigniter4/framework": "^4.0.2"
},
"autoload":
{
"psr-4":
{
"Raizdev\\Twig\\": "src/"
}
},
"autoload-dev":
{
"psr-4":
{
"Raizdev\\Twig\\": "tests/Twig/"
}
},
"scripts": {
"test": "phpunit"
}
}