-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 1010 Bytes
/
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": "femundfilou/kirby-vite",
"description": "Use Vite Frontend Tooling in Kirby.",
"version": "0.1.1",
"type": "kirby-plugin",
"keywords": [
"kirby-plugin"
],
"license": "MIT",
"homepage": "https://github.com/femundfilou/kirby-vite",
"autoload": {
"psr-4": {
"Fefi\\Vite\\": "lib/"
}
},
"authors": [
{
"name": "Justus Kraft",
"email": "[email protected]"
}
],
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"getkirby/composer-installer": true
}
},
"require": {
"getkirby/cms": "^3.6 || ^4.0",
"getkirby/composer-installer": "^1.1"
},
"scripts": {
"fix": "php-cs-fixer fix --config .php-cs-fixer.dist.php"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.8"
},
"installer-name": "vite"
}