forked from ctoec/ctoec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
81 lines (80 loc) · 2.43 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
{
"name": "govbloom/ctoec",
"description": "Project template for WordPress projects with composer",
"type": "project",
"license": "GPL-2.0+",
"authors": [
{
"name": "",
"role": ""
}
],
"repositories":[
{
"type":"composer",
"url":"https://wpackagist.org"
},
{
"type": "package",
"package": {
"name": "theme/ctoec",
"version": "dev-master",
"type":"wordpress-theme",
"source": {
"url": "https://github.com/ctoec/benjamin.git",
"type": "git",
"reference": "master"
}
}
},
{
"type": "package",
"package": {
"name": "plugin/forms-list",
"version": "dev-master",
"type":"wordpress-plugin",
"source": {
"url": "https://github.com/ctoec/gutenberg-form-block.git",
"type": "git",
"reference": "master"
}
}
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true
},
"require": {
"composer/installers": "^1.2",
"drupal-composer/preserve-paths": "0.1.*",
"johnpbloch/wordpress-core": "~5.2",
"johnpbloch/wordpress-core-installer": "^1.0",
"plugin/forms-list": "dev-master",
"theme/ctoec": "dev-master",
"wpackagist-plugin/all-in-one-redirection": "^2.1",
"wpackagist-plugin/aryo-activity-log": "^2.5",
"wpackagist-plugin/ga-google-analytics": "20180828",
"wpackagist-plugin/header-and-footer-scripts-inserter": "^4.34",
"wpackagist-plugin/meta-box": "^4.16",
"wpackagist-plugin/reusable-gutenberg-blocks-widget": "^1.0",
"wpackagist-plugin/simple-page-sidebars": "^1.2",
"wpackagist-plugin/updraftplus": "^1.16",
"wpackagist-plugin/wordpress-seo": "^9.5",
"wpackagist-plugin/worker": "^4.6",
"wpackagist-plugin/wp-fastest-cache": "^0.8.9",
"wpackagist-plugin/wp-mail-smtp": "^1.4"
},
"extra": {
"installer-paths": {
"wordpress/wp-content/plugins/{$name}/": ["type:wordpress-plugin"],
"wordpress/wp-content/themes/{$name}/": ["type:wordpress-theme"]
},
"preserve-paths": [
"wordpress/wp-config.php",
"wordpress/wp-content/uploads"
],
"wordpress-install-dir": "wordpress"
}
}