-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
51 lines (51 loc) · 1.75 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
{
"name" : "salaros/mr-press-child-theme",
"description" : "A child theme of Mr. Press default theme, it's a starting point for your projects",
"type" : "wordpress-theme",
"license" : "MIT",
"authors" : [
{
"name" : "Zhmayev Yaroslav",
"email" : "salaros@salaros.com",
"homepage" : "https://github.com/salaros",
"role" : "Developer"
}
],
"repositories" : [
{
"type" : "composer",
"url" : "https://wpackagist.org"
}
],
"require": {
"salaros/mr-press-theme" : "*",
"fxp/composer-asset-plugin" : "~1.3.0",
"bower-asset/normalize.css" : "~3.0.0",
"bower-asset/bootstrap" : "~3.3.0",
"bower-asset/respond" : "~1.4.0",
"bower-asset/html5shiv" : "~3.7.0",
"bower-asset/semantic" : "~2.2.0",
"wpackagist-plugin/wp-postviews" : "*"
},
"extra": {
"installer-paths": {
"../../plugins/{$name}/" : [
"type:wordpress-plugin"
],
"../../themes/{$name}/" : [
"type:wordpress-theme"
]
}
},
"minimum-stability" : "stable",
"prefer-stable" : true,
"config" : {
"secure-http" : false,
"fxp-asset": {
"installer-paths": {
"npm-asset-library" : "../../npm-asset",
"bower-asset-library" : "../../bower-asset"
}
}
}
}