-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 1 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
{
"name": "schranz-templating/spiral-blade-integration",
"description": "A integration of template renderer into spiral via blade template engine.",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Schranz\\Templating\\Integration\\Spiral\\Blade\\": ""
}
},
"repositories": [
{
"type": "path",
"url": "./../../../TemplateRenderer",
"options": {
"symlink": true
}
},
{
"type": "path",
"url": "./../../../Adapter/Blade",
"options": {
"symlink": true
}
}
],
"require": {
"php": "^8.1",
"schranz-templating/blade-adapter": "^0.1",
"spiral/boot": "^3.0",
"spiral/config": "^3.0",
"spiral/core": "^3.0"
},
"minimum-stability": "dev",
"config": {
"allow-plugins": {
"spiral/composer-publish-plugin": true
}
}
}