This repository has been archived by the owner on Feb 13, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
76 lines (76 loc) · 1.71 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
69
70
71
72
73
74
75
76
{
"name": "bnomei/kirby3-srcset",
"type": "kirby-plugin",
"version": "3.3.12",
"license": "MIT",
"description": "Kirby 3 Plugin for creating lazyloading image srcset",
"authors": [
{
"name": "Bruno Meilick",
"email": "[email protected]"
}
],
"keywords": [
"kirby3",
"kirby3-cms",
"kirby3-plugin",
"srcset",
"lazy",
"load",
"images",
"lazysizes",
"lozad.js",
"loadjs",
"flickity",
"img",
"lazyload",
"kirbytag",
"editor-block",
"component",
"markdown"
],
"autoload": {
"psr-4": {
"Bnomei\\": "classes/Bnomei"
},
"files": ["classes/Kirby/Editor/SrcsetBlock.php"]
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"require": {
"php": ">=7.2.0",
"getkirby/composer-installer": "^1.2"
},
"require-dev": {
"getkirby/cms": "^3.5",
"php-coveralls/php-coveralls": "^2.1",
"phpunit/phpunit": "^9.5"
},
"scripts": {
"analyze": "phpstan analyse classes",
"fix": "php-cs-fixer fix",
"test": [
"mkdir -p tests/logs",
"@putenv XDEBUG_MODE=coverage",
"phpunit --configuration ./phpunit.xml"
],
"dist": [
"composer install --no-dev --optimize-autoloader",
"git rm -rf --cached .; git add .;"
],
"kirby": [
"composer install",
"composer update",
"composer install --working-dir=tests/kirby --no-dev --optimize-autoloader",
"composer update --working-dir=tests/kirby"
]
},
"extra": {
"kirby-cms-path": "tests/kirby"
},
"suggest": {
"bnomei/kirby3-thumb-imageoptim": "Thumb driver component to automatically optimize images with the ImageOptim API (paid account required)."
}
}