-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.09 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.09 KB
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
{
"config": {
"preferred-install": "dist",
"optimize-autoloader": true,
"allow-plugins": {
"composer/installers": true,
"ffraenz/private-composer-installer": true,
"gotoandplay/gravityforms-composer-installer": true
}
},
"repositories": {
"wpmudev": {
"type": "composer",
"url": "https://wpmudev.com/"
},
"0": {
"type": "composer",
"url": "https://wpackagist.org"
},
"1": {
"type": "composer",
"url": "https://connect.advancedcustomfields.com"
}
},
"autoload": {
"psr-4": {
"GetUnik\\Theme\\": "wp-content/themes/wastefree/src"
}
},
"require": {
"php": ">=7.4",
"ext-json": "*",
"composer/installers": "^1.4",
"ffraenz/private-composer-installer": "^5.0",
"vlucas/phpdotenv": "5.5.0",
"timber/timber": "^2.0",
"wpengine/advanced-custom-fields-pro": "^6.0"
},
"extra": {
"installer-paths": {
"wp-content/plugins/{$name}/": [
"type:wordpress-plugin"
],
"wp-content/themes/{$name}/": [
"type:wordpress-theme"
]
}
}
}