This repository has been archived by the owner on Oct 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
83 lines (83 loc) · 2.49 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": "studioartcz/wp",
"description": "Composer based stack for Wordpress",
"type": "project",
"private": true,
"authors": [
{
"name": "Michal Landsman",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/studioartcz/wp/issues"
},
"config": {
"preferred-install": "dist",
"optimize-autoloader": true
},
"repositories":[
{
"type": "composer",
"url": "https://wpackagist.org"
}
],
"require": {
"php": ">=7.0",
"johnpbloch/wordpress": "^4.9",
"roots/wp-password-bcrypt": "^1.0",
"wpackagist-plugin/admin-menu-editor": "^1.7",
"wpackagist-plugin/advanced-custom-fields": "^4.4",
"wpackagist-plugin/maintenance": "^3.5",
"wpackagist-plugin/metronet-tag-manager": "^1.2",
"wpackagist-plugin/wp-sentry-integration": "dev-trunk",
"wpackagist-plugin/wp-tracy": "^1.0",
"wpackagist-plugin/timber-library": "^1.3",
"wpackagist-plugin/wp-super-cache": "~1.4",
"wpackagist-plugin/disqus-comment-system": "^2.8",
"dg/composer-cleaner": "^1.1"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.0.2",
"symfony/finder": "^3.2",
"symfony/console": "^3.2",
"symfony/filesystem": "^3.2",
"dg/ftp-deployment": "^2.7"
},
"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"
},
"minimum-stability": "dev",
"autoload": {
"classmap": [
"scripts/composer/ScriptHandler.php"
]
},
"scripts": {
"clean-before-deploy": [
"echo Warning: Deleting all .git dirs under vendor ",
"rm -rf vendor/**/**/.git",
"rm -rf public/wp/wp-content/themes/*"
],
"build-theme": [
"StudioArtcz\\composer\\ScriptHandler::deployThemes"
],
"post-root-package-install": [
"php -r \"copy('.env.example', '.env');\""
],
"post-install-cmd": [
"@clean-before-deploy"
],
"post-update-cmd": [
"@clean-before-deploy"
],
"test": [
"vendor/bin/phpcs"
]
}
}