-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
98 lines (98 loc) · 2.73 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "nathanaelphilip/losys",
"description": "LoSys - WP/Timber Starter Project",
"type": "project",
"authors": [
{
"name": "Nathanael Moody",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"LoSys\\": "themes/losys/boot/"
}
},
"require": {
"composer/installers": "^1.6.0",
"advanced-custom-fields/advanced-custom-fields-pro": "*",
"deliciousbrains/wp-migrate-db-pro": "*",
"deliciousbrains/wp-migrate-db-pro-media-files": "*",
"johnpbloch/wordpress": "^5.1.0",
"johnbillion/extended-cpts": "^4.2.4",
"wpackagist-plugin/classic-editor":"^1.3.0",
"wpackagist-plugin/cache-enabler": "^1.3.1",
"wp-cli/wp-cli-bundle": "*",
"nathanaelphilip/losys-framework": "dev-master",
"timber/timber": "^1.10"
},
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
},
{
"type": "composer",
"url": "https://pivvenit.github.io/acf-composer-bridge/composer/v2/wordpress-plugin/"
},
{
"type": "package",
"package": {
"name": "advanced-custom-fields/advanced-custom-fields-pro",
"version": "5.8.1",
"type": "wordpress-plugin",
"dist": {
"type": "zip",
"url": "https://connect.advancedcustomfields.com/index.php?a=download&p=pro&k={%ACF_PRO_KEY}&t={%version}"
},
"require": {
"composer/installers": "^1.6",
"ffraenz/private-composer-installer": "^2.0"
}
}
},
{
"type": "package",
"package": {
"name": "deliciousbrains/wp-migrate-db-pro",
"type": "wordpress-plugin",
"version": "1.9.8",
"dist": {
"type": "zip",
"url": "https://deliciousbrains.com/dl/wp-migrate-db-pro-1.9.8.zip?licence_key={%WPMDB_LICENSE}&site_url=losys.local"
},
"require": {
"composer/installers": "^1.6",
"ffraenz/private-composer-installer": "^2.0"
}
}
},
{
"type": "package",
"package": {
"name": "deliciousbrains/wp-migrate-db-pro-media-files",
"type": "wordpress-plugin",
"version": "1.4.14",
"dist": {
"type": "zip",
"url": "https://deliciousbrains.com/dl/wp-migrate-db-pro-media-files-1.4.14.zip?licence_key={%WPMDB_LICENSE}&site_url=losys.local"
},
"require": {
"composer/installers": "^1.6",
"ffraenz/private-composer-installer": "^2.0"
}
}
}
],
"extra": {
"wordpress-install-dir": "cms",
"installer-paths": {
"extensions/{$name}/": ["type:wordpress-plugin"]
}
},
"scripts": {
"pre-install-cmd": [
"chmod +x scripts/env.sh && scripts/env.sh"
]
}
}