-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
83 lines (76 loc) · 2.77 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
{
"name" : "my-wordpress-project",
"type" : "project",
"description": "My wordpress project",
"homepage" : "https://github.com/gwa/my-wordpress-project/",
"authors" : [{
"name" : "Great White Ark",
"homepage": "http://www.greatwhiteark.com"
}],
"keywords": [],
"config": {
"preferred-install" : "dist",
"generate-salts" : true
},
"autoload": {
"psr-4": {
"Gwa\\Wordpress\\Template\\MyTheme\\" : "public/app/themes/mytheme/src/lib"
}
},
"autoload-dev": {
"psr-4": {
"Gwa\\Wordpress\\Tests\\" : "tests/"
}
},
"repositories": [
{
"type": "composer",
"url" : "https://wpackagist.org"
},
{
"type": "composer",
"url": "https://wp-languages.github.io"
}
],
"require": {
"php" : ">=5.4",
"composer/installers" : "^1.0",
"johnpbloch/wordpress" : "4.5.1",
"gwa/zero-library" : "5.0.x-dev",
"gwa/zero-module-id-columns" : "^0.2",
"gwa/zero-module-cleanup" : "^0.2",
"koodimonni/composer-dropin-installer" : "^1.0",
"koodimonni-language/core-de_de" : "4.5.1",
"koodimonni-language/core-en_gb" : "4.5.1",
"anolilab/wordpress-salt-generator" : "^1.2",
"roots/wp-password-bcrypt" : "^1.0"
},
"require-dev": {
"vlucas/phpdotenv" : "^2.2",
"mockery/mockery" : "^0.9",
"phpunit/phpunit" : "^4.8",
"gwa/dom-inspector" : "^0.1.0"
},
"scripts": {
"test" : "sh vendor/bin/phpunit",
"post-install-cmd" : [
"Anolilab\\Wordpress\\SaltGenerator\\Generator::addSalts",
"php -r \"touch('public/.htaccess');\""
]
},
"extra": {
"installer-paths": {
"public/app/plugins/{$name}/" : ["type:wordpress-plugin", "type:wordpress-dropin", "type:wordpress-muplugin"],
"public/app/themes/{$name}/" : ["type:wordpress-theme"]
},
"dropin-paths": {
"public/app/languages/" : ["type:wordpress-language"],
"public/app/languages/plugins/" : ["type:wordpress-plugin-language"],
"public/app/languages/themes/" : ["type:wordpress-theme-language"]
},
"wordpress-install-dir" : "public/wp",
"wordpress-languages-dir" : "public/app/languages/"
},
"minimum-stability" : "dev",
"prefer-stable" : true
}