-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 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
39
40
41
{
"name": "schranz-templating/laravel-twig-integration",
"description": "A integration of template renderer into laravel via twig template engine.",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Schranz\\Templating\\Integration\\Laravel\\Twig\\": ""
}
},
"repositories": [
{
"type": "path",
"url": "./../../../TemplateRenderer",
"options": {
"symlink": true
}
},
{
"type": "path",
"url": "./../../../Adapter/Twig",
"options": {
"symlink": true
}
}
],
"require": {
"php": "^7.0 || ^8.0",
"illuminate/view": "^8.0 || ^9.0",
"illuminate/support": "^8.0 || ^9.0",
"schranz-templating/twig-adapter": "^0.1"
},
"minimum-stability": "dev",
"extra": {
"laravel": {
"providers": [
"Schranz\\Templating\\Integration\\Laravel\\Twig\\SchranzTemplatingTwigProvider"
]
}
}
}