This repository has been archived by the owner on Feb 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
executable file
·59 lines (59 loc) · 1.61 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
{
"name": "kharysharpe/wpsaaskit",
"type": "project",
"license": "MIT",
"description": "WordPress SaaS Kit",
"homepage": "https://github.com/kharysharpe/wpsaaskit/",
"authors": [
{
"name": "Khary Sharpe",
"email": "[email protected]",
"homepage": "https://github.com/kharysharpe"
}
],
"keywords": [
"saas", "toolkit", "wordpress", "stack", "composer", "vagrant", "wp"
],
"support": {
"issues": "https://github.com/kharysharpe/wpsaaskit/issues"
},
"config": {
"preferred-install": "dist"
},
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
}
],
"require": {
"php": ">=5.6",
"composer/installers": "~1.0.12",
"vlucas/phpdotenv": "^2.0.1",
"johnpbloch/wordpress": "4.6.1",
"oscarotero/env": "^1.0",
"roots/wp-password-bcrypt": "^1.0",
"wpackagist-plugin/tailor": "^1.7",
"wpackagist-plugin/tailor-advanced": "^1.0",
"wpackagist-plugin/simple-membership": "^3.3",
"wpackagist-plugin/simple-membership-after-login-redirection": "^1.3",
"wpackagist-plugin/user-role-editor": "^4.30",
"wpackagist-plugin/easy-pricing-tables": "^2.3"
},
"require-dev": {
"squizlabs/php_codesniffer": "^2.5.1"
},
"extra": {
"installer-paths": {
"public/app/mu-plugins/{$name}/": ["type:wordpress-muplugin"],
"public/app/plugins/{$name}/": ["type:wordpress-plugin"],
"public/app/themes/{$name}/": ["type:wordpress-theme"]
},
"wordpress-install-dir": "public/wp"
},
"scripts": {
"test": [
"vendor/bin/phpcs --ignore=web/wp/,vendor/ -n -s ."
]
}
}