-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 1.01 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
{
"name": "schranz-templating/symfony-plates-integration",
"description": "A integration of template renderer into symfony via plates template engine.",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Schranz\\Templating\\Integration\\Symfony\\Plates\\": ""
}
},
"repositories": [
{
"type": "path",
"url": "./../../../TemplateRenderer",
"options": {
"symlink": true
}
},
{
"type": "path",
"url": "./../../../Adapter/Plates",
"options": {
"symlink": true
}
}
],
"require": {
"php": "^7.0 || ^8.0",
"league/plates": "^3.0",
"schranz-templating/plates-adapter": "^0.1",
"symfony/config": "^4.4 || ^5.4 || ^6.0",
"symfony/dependency-injection": "^4.4 || ^5.4 || ^6.0",
"symfony/http-kernel": "^4.4 || ^5.4 || ^6.0"
},
"minimum-stability": "dev"
}