-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 787 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 787 Bytes
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": "cgu/wordpress_starter_theme",
"description": "Starter theme for WordPress",
"type": "project",
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
}
],
"require": {
"timber/timber": "^1.18",
"wpackagist-plugin/advanced-custom-fields": "^5.9.5",
"wpackagist-plugin/loco-translate": "^2.5"
},
"extra": {
"installer-paths": {
"../../plugins/advanced-custom-fields": [
"wpackagist-plugin/advanced-custom-fields"
],
"../../plugins/loco-translate": [
"wpackagist-plugin/loco-translate"
]
}
},
"autoload": {
"psr-4": {
"CustomThemeName\\": "inc/"
}
},
"authors": [
{
"name": "caguy",
"email": "camille.guy@gmail.com"
}
]
}