forked from getkirby-v2/patterns-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
40 lines (40 loc) · 876 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
{
"name": "crealistiques/patterns",
"type": "kirby-plugin",
"version": "3.0.0",
"license": "MIT",
"description": "Kirby 3 Patterns Plugin",
"authors": [
{
"name": "Bastian Allgeier",
"email": "[email protected]"
},
{
"name": "Steffen Wargalla",
"email": "[email protected]"
}
],
"keywords": [
"kirby3",
"kirby3-cms",
"kirby3-plugin",
"patterns",
"patternlab",
"style guide",
"branding",
"templates"
],
"autoload": {
"psr-4": {
"Kirby\\Patterns\\": "src/classes/"
}
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"require": {
"php": ">=7.1.0",
"getkirby/composer-installer": "^1.1"
}
}