-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
57 lines (57 loc) · 1.19 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
{
"name": "timnarr/kirby-imagex",
"description": "Modern images for Kirby CMS – This plugin helps you orchestrate modern, responsive and performant images in Kirby",
"type": "kirby-plugin",
"keywords": [
"kirby",
"kirby-cms",
"kirby-plugin",
"images",
"responsive-images",
"modern-images"
],
"version": "0.1.3",
"license": "MIT",
"homepage": "https://github.com/timnarr/kirby-imagex",
"authors": [
{
"name": "Tim Narr",
"email": "[email protected]",
"homepage": "https://tim-narr.com"
}
],
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"getkirby/composer-installer": "^1.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3",
"phpunit/phpunit": "^10.5",
"getkirby/cms": "^4.0"
},
"autoload": {
"psr-4": {
"TimNarr\\": ["classes/"]
},
"files": [
"helpers/aspectRatio.php",
"helpers/attributes.php",
"helpers/misc.php",
"helpers/srcset.php"
]
},
"scripts": {
"lint": ["php-cs-fixer fix --dry-run --diff"],
"lint:fix": ["php-cs-fixer fix"],
"test": ["phpunit tests"]
},
"config": {
"optimize-autoloader": true,
"allow-plugins": {
"getkirby/composer-installer": true
}
},
"extra": {
"kirby-cms-path": false
}
}