forked from MPAT-eu/MPAT-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
100 lines (100 loc) · 3.1 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
99
100
{
"name" : "mpat/mpat-core",
"type" : "project",
"license" : "MIT",
"description" : "Multi Platform Application Toolkit",
"homepage" : "https://mpat.eu/",
"authors" : [{
"name" : "Stefano Miccoli",
"email" : "[email protected]",
"homepage" : "http://www.finconsgroup.com/"
},{
"name" : "Marco Ferrari",
"email" : "[email protected]"
}
],
"keywords" : [
"mpat",
"hbbtv",
"wordpress",
"wp"
],
"config" : {
"preferred-install" : "dist"
},
"repositories" : [{
"type" : "composer",
"url" : "https://wpackagist.org"
}, {
"type" : "vcs",
"url" : "[email protected]:MPAT-eu/MPAT-theme.git"
}, {
"type" : "vcs",
"url" : "[email protected]:MPAT-eu/MPAT-plugins.git"
}, {
"type" : "vcs",
"url" : "[email protected]:WP-API/Basic-Auth.git"
}, {
"type" : "vcs",
"url" : "[email protected]:MPAT-eu/mpat-importexport.git"
}, {
"type" : "vcs",
"url" : "[email protected]:MPAT-eu/mpat-getinfofrompage.git"
}, {
"type" : "vcs",
"url" : "[email protected]:MPAT-eu/mpat-tvdebugserver.git"
}, {
"type" : "vcs",
"url" : "[email protected]:MPAT-eu/mpat-explorer.git"
}, {
"type" : "vcs",
"url" : "[email protected]:MPAT-eu/cpo.git"
}, {
"type" : "vcs",
"url" : "[email protected]:MPAT-eu/mbop.git"
}, {
"type": "vcs",
"url": "[email protected]:MPAT-eu/mpat-newpagewizard.git"
}
],
"require" : {
"php" : ">=5.5",
"composer/installers" : "~1.0.12",
"vlucas/phpdotenv" : "^2.0.1",
"johnpbloch/wordpress" : "^4.8.2",
"oscarotero/env" : "^1.0",
"roots/wp-password-bcrypt" : "^1.0.0",
"wpackagist-plugin/enhanced-media-library": "^2.4.4",
"wpackagist-plugin/members" : "^1.1.1",
"mpat/mpat-plugins" : "dev-master",
"mpat/mpat-theme" : "dev-master",
"mpat/mpat-importexport" : "dev-master",
"mpat/mpat-explorer" : "dev-master",
"mpat/mpat-newpagewizard": "dev-master",
"mpat-cpo" : "dev-master",
"mbop-remover" : "dev-master"
},
"require-dev" : {
"squizlabs/php_codesniffer" : "^2.5.1",
"wp-api/basic-auth" : "dev-master",
"wpackagist-plugin/rewrite-rules-inspector" : "1.2.1",
"wpackagist-plugin/wp-crontrol" : "1.3.1"
},
"extra" : {
"installer-paths" : {
"nodejs/{$name}/": [
"type:nodejs-application"
],
"web/app/mu-plugins/{$name}/" : [
"type:wordpress-muplugin"
],
"web/app/plugins/{$name}/" : [
"type:wordpress-plugin"
],
"web/app/themes/{$name}/" : [
"type:wordpress-theme"
]
},
"wordpress-install-dir" : "web/wp"
}
}