-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
executable file
·54 lines (54 loc) · 1.32 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
{
"name": "nerdcel/kirby3-responsive-images",
"description": "Kirby3 plugin to manage responsive images settings using the panel.",
"license": "MIT",
"type": "kirby-plugin",
"scripts": {
"test": "phpunit tests --process-isolation"
},
"keywords": [
"kirby3",
"kirby-cms",
"kirby-plugin",
"getkirby",
"kirby"
],
"homepage": "https://github.com/nerdcel/kirby3-responsive-images",
"authors": [
{
"name": "Marcel Hieke",
"email": "[email protected]"
}
],
"require": {
"php": ">= 8.1 < 8.4",
"getkirby/composer-installer": "^1.2.1"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"phpunit/phpunit": "^10",
"getkirby/cms": "^4.2",
"phpstan/phpstan": "^1.10"
},
"autoload": {
"psr-4": {
"Nerdcel\\ResponsiveImages\\": "src/Classes/"
},
"files": [
"src/helpers.php"
],
"classmap": [
"src/Classes"
]
},
"config": {
"optimize-autoloader": true,
"allow-plugins": {
"getkirby/composer-installer": true
}
},
"extra": {
"installer-name": "responsive-images",
"kirby-cms-path": false
}
}