forked from sasquatchwp/sasquatchwp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
63 lines (63 loc) · 1.64 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
{
"name": "sasquatchwp/sasquatchwp",
"type": "project",
"version": "1.2.6",
"license": "MIT",
"description": "Starter stack for WordPress - mix of Foundation, Bedrock and some magic ",
"homepage": "https://github.com/SasquatchWP/SasquatchWP",
"authors": [
{
"name": "Maciej Palmowski",
"email": "[email protected]",
"homepage": "https://pandify.pl"
}
],
"keywords": [
"bedrock", "roots", "wordpress", "stack", "composer", "wp", "timber"
],
"config": {
"preferred-install": "dist",
"process-timeout": 0
},
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
}
],
"require": {
"php": ">=5.6",
"composer/installers": "^1.5",
"vlucas/phpdotenv": "^2.0.1",
"roots/wordpress": "5.0.1",
"oscarotero/env": "^1.1.0",
"roots/wp-password-bcrypt": "1.0.0",
"roots/wp-config": "1.0.0",
"soberwp/models": "dev-master"
},
"require-dev": {
"squizlabs/php_codesniffer": "^2.0.0",
"roave/security-advisories": "dev-master"
},
"extra": {
"installer-paths": {
"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"
},
"scripts": {
"post-root-package-install": [
"php -r \"copy('.env.example', '.env');\"",
"@installer"
],
"test": [
"vendor/bin/phpcs"
],
"installer": [
"cd web/app/themes/sasquatch && npm install && npm run build",
"cd web/app/themes/sasquatch && composer update"
]
}
}