-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
77 lines (77 loc) · 2.88 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
{
"name" : "salaros/mr-press",
"description" : "Mr. Press is a WordPress development stack similar to Bedrock. Project's main goal is to improve the overall security, portability and deployment process of WordPress, while trying to use the best web development practices.",
"keywords" : [
"wordpress", "project", "template", "deploy"
],
"type" : "project",
"license" : "MIT",
"homepage" : "https://github.com/salaros/mr-press",
"support": {
"issues" : "https://github.com/salaros/mr-press/issues",
"source" : "https://github.com/salaros/mr-press"
},
"authors" : [
{
"name" : "Zhmayev Yaroslav",
"email" : "salaros@yandex.ru",
"homepage" : "https://github.com/salaros",
"role" : "Developer"
}
],
"repositories" : [
{
"type" : "composer",
"url" : "https://wpackagist.org"
}
],
"require": {
"php" : ">=5.5",
"johnpbloch/wordpress-core" : "~4.9.0",
"vlucas/phpdotenv" : "^2.2",
"salaros/mr-press-child-theme" : "*",
"salaros/mr-press-composer" : "*"
},
"extra": {
"wordpress-install-dir" : "public",
"installer-paths": {
"wp-content/plugins/{$name}/" : [
"type:wordpress-plugin"
],
"wp-content/themes/{$name}/" : [
"type:wordpress-theme"
]
}
},
"scripts": {
"post-create-project-cmd" : [
"Salaros\\MrPress\\Composer\\Scripts::addSalts"
],
"initialize" : [
"Salaros\\MrPress\\Composer\\Scripts::createDatabase",
"Salaros\\MrPress\\Composer\\Scripts::createTables",
"Salaros\\MrPress\\Composer\\Scripts::activatePlugins",
"Salaros\\MrPress\\Composer\\Scripts::createCronjob"
],
"create-cron-job" : [
"Salaros\\MrPress\\Composer\\Scripts::createCronjob"
]
},
"minimum-stability" : "dev",
"prefer-stable" : true,
"config": {
"generate-salts" : true,
"secure-http" : false,
"preferred-install" : {
"salaros/mr-press-theme" : "source",
"salaros/mr-press-child-theme" : "source",
"*" : "dist"
},
"fxp-asset": {
"asset-installer-paths": {
"npm-asset-library" : "wp-content/npm-asset",
"bower-asset-library" : "wp-content/bower-asset"
}
}
}
}