forked from afbora/kirby-blade
-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
68 lines (68 loc) · 1.3 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "leitsch/kirby-blade",
"description": "Enable Laravel Blade Template Engine for Kirby 4",
"version": "3.0.4",
"keywords": [
"kirby",
"kirby-4",
"kirby4-plugin",
"kirby-plugin",
"kirby-blade",
"blade",
"laravel",
"view",
"template",
"template-engine"
],
"type": "kirby-plugin",
"license": "MIT",
"authors": [
{
"name": "Lukas Leitsch",
"email": "[email protected]"
},
{
"name": "Fabian Michael",
"email": "[email protected]"
},
{
"name": "Ahmet Bora",
"email": "[email protected]"
}
],
"scripts": {
"pint": "vendor/bin/pint"
},
"require": {
"php": "^8.2",
"getkirby/composer-installer": "^1.2",
"getkirby/cms": "^4.0",
"illuminate/config": "^11.0",
"illuminate/view": "^11.0"
},
"require-dev": {
"laravel/pint": "^1.14"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"getkirby/composer-installer": true
}
},
"autoload": {
"psr-4": {
"Leitsch\\Blade\\": "src/"
},
"files": [
"helpers.php"
]
},
"minimum-stability": "stable",
"prefer-stable": true,
"extra": {
"installer-name": "blade",
"kirby-cms-path": false
}
}