-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·46 lines (46 loc) · 1.06 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
{
"name": "nerdcel/kirby3-icon-sprite",
"description": "Kirby3 plugin to manage svg icons.",
"license": "MIT",
"type": "kirby-plugin",
"keywords": [
"kirby3",
"kirby-cms",
"kirby-plugin",
"getkirby",
"kirby"
],
"homepage": "https://github.com/nerdcel/kirby3-icon-sprite",
"authors": [
{
"name": "Marcel Hieke",
"email": "[email protected]"
}
],
"require": {
"php": ">= 8.1 < 8.4",
"ext-dom": "*",
"getkirby/composer-installer": "^1.2.1"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"phpstan/phpstan": "^1.10"
},
"autoload": {
"psr-4": {
"Nerdcel\\IconSprite\\": "src/Classes/"
},
"files": [
"src/helpers.php"
]
},
"config": {
"optimize-autoloader": true,
"allow-plugins": {
"getkirby/composer-installer": true
}
},
"extra": {
"installer-name": "icon-sprite"
}
}