-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 1.03 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
{
"name": "schranz-templating/laminas-twig-integration",
"description": "A integration of template renderer into laminas via twig template engine.",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Schranz\\Templating\\Integration\\Laminas\\Twig\\": ""
}
},
"repositories": [
{
"type": "path",
"url": "./../../../TemplateRenderer",
"options": {
"symlink": true
}
},
{
"type": "path",
"url": "./../../../Adapter/Twig",
"options": {
"symlink": true
}
}
],
"require": {
"php": "^7.0 || ^8.0",
"laminas/laminas-modulemanager": "^2.0",
"laminas/laminas-servicemanager": "^2.0 || ^3.0",
"schranz-templating/twig-adapter": "^0.1"
},
"minimum-stability": "dev",
"extra": {
"laminas": {
"module": "Schranz\\Templating\\Integration\\Laminas\\Twig"
}
}
}