-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
41 lines (41 loc) · 1003 Bytes
/
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
{
"name": "VueWP",
"type": "project",
"license": "UNLICENSED",
"description": "Single Page WP Theme with VueJS",
"homepage": "https://github.com/bedakb",
"authors": [],
"config": {
"preferred-install": "dist"
},
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
}
],
"require": {
"php": ">=5.5",
"composer/installers": "~1.0.12",
"vlucas/phpdotenv": "^2.0.1",
"johnpbloch/wordpress": "4.6",
"oscarotero/env": "^1.0",
"roots/wp-password-bcrypt": "1.0.0"
},
"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=public/wp/,vendor/ -n -s ."
]
}
}