-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (44 loc) · 889 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
42
43
44
45
{
"name": "timnarr/kirby-helpers",
"description": "This plugin provides a collection of helper functions for Kirby",
"type": "kirby-plugin",
"version": "0.3.5",
"license": "MIT",
"homepage": "https://github.com/timnarr/kirby-helpers",
"authors": [
{
"name": "Tim Narr",
"email": "dev@tim-narr.com",
"homepage": "https://tim-narr.com"
}
],
"require": {
"php": "^8.2",
"getkirby/composer-installer": "^1.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3",
"getkirby/cms": "^4.0"
},
"scripts": {
"lint": ["php-cs-fixer fix --dry-run --diff"],
"lint:fix": ["php-cs-fixer fix"]
},
"autoload": {
"files": [
"src/css.php",
"src/ensure.php",
"src/misc.php",
"src/vite.php"
]
},
"config": {
"optimize-autoloader": true,
"allow-plugins": {
"getkirby/composer-installer": true
}
},
"extra": {
"kirby-cms-path": false
}
}