-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
45 lines (45 loc) · 1.07 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
{
"name": "beebmx/kirby-blade",
"description": "Blade template for Kirby 3 & 4",
"keywords": [
"kirby", "kirby-3", "kirby-4", "blade", "view", "template"
],
"version": "6.0.1",
"type": "kirby-plugin",
"license": "MIT",
"authors": [
{
"name": "Fernando Gutierrez",
"homepage": "https://beeb.mx"
}
],
"require": {
"php": "^8.2",
"beebmx/blade": "^1.8",
"getkirby/composer-installer": "^1.2",
"illuminate/view": "^10.0|^11.0",
"ramsey/uuid": "^4.7"
},
"require-dev": {
"getkirby/cms": "^4.3",
"laravel/pint": "^1.16"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"getkirby/composer-installer": true
}
},
"autoload": {
"files": [
"helpers.php"
],
"psr-4": {
"Beebmx\\KirbyBlade\\": "src/"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}