forked from flyntwp/flynt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 818 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
{
"name": "flyntwp/flynt",
"description": "Flynt is a WordPress theme for component-based development using Timber and Advanced Custom Fields.",
"type": "wordpress-theme",
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "bleech",
"email": "flynt@bleech.de"
}
],
"require": {
"php": ">=7.0.0",
"timber/timber": "^1.8",
"flyntwp/acf-field-group-composer": "^1.0.1",
"erusev/parsedown": "^1.7"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.4"
},
"extra": {
"installer-paths": {
"vendor/{$vendor}/{$name}/": [
"type:wordpress-muplugin",
"type:wordpress-plugin",
"type:wordpress-theme"
]
}
},
"autoload": {
"psr-4": {
"Flynt\\": "lib/"
}
}
}