-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
executable file
·74 lines (74 loc) · 2.45 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
{
"name": "wpugph/dxtc-website",
"description": "DEVCON COMMUNITY OF TECHNOLOGY EXPERTS website",
"type": "project",
"keywords": [],
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
},
{
"type": "vcs",
"url": "https://github.com/pantheon-systems/wordpress-composer"
}
],
"require": {
"php": ">=7.3",
"composer/installers": "^1.3.0",
"pantheon-systems/quicksilver-pushback": "^2",
"pantheon-systems/wordpress-composer": "*",
"roots/wp-password-bcrypt": "^1.0.0",
"rvtraveller/qs-composer-installer": "^1.1",
"vlucas/phpdotenv": "^3.1.0",
"wpackagist-plugin/airpress":"^1.1",
"wpackagist-plugin/all-in-one-wp-security-and-firewall": "dev-trunk",
"wpackagist-plugin/autoptimize": "dev-trunk",
"wpackagist-plugin/host-analyticsjs-local": "dev-trunk",
"wpackagist-plugin/pantheon-advanced-page-cache": "^1.0.0",
"wpackagist-plugin/two-factor": "dev-trunk",
"wpackagist-plugin/redirection": "dev-trunk",
"wpackagist-plugin/stream": "dev-trunk",
"wpackagist-plugin/wp-native-php-sessions": "^1.2.1",
"wpackagist-plugin/wordpress-importer": "dev-trunk",
"wpackagist-plugin/wp-cfm": "dev-trunk",
"wpackagist-plugin/wp-redis": "dev-trunk",
"wpackagist-plugin/inline-google-spreadsheet-viewer": "dev-trunk",
"wpackagist-plugin/unicard": "dev-trunk",
"wpackagist-plugin/plugin-organizer": "dev-trunk",
"wpackagist-plugin/wp-smushit": "dev-trunk",
"wpackagist-plugin/widget-context": "^1.3",
"wpackagist-plugin/seo-by-rank-math":"dev-trunk",
"wpackagist-plugin/json-content-importer":"^1.3",
"wpackagist-plugin/wordpress-seo":"13.5",
"wpackagist-theme/twentytwenty": "^1.5"
},
"config": {
"vendor-dir": "vendor",
"preferred-install": "dist",
"optimize-autoloader": true,
"sort-packages": true,
"platform": {
"php": "7.3"
}
},
"extra": {
"wordpress-install-dir": "web/wp",
"build-env": {
"install-cms": [
"wp core install --title={site-name} --url={site-url} --admin_user={account-name} --admin_email={account-mail} --admin_password={account-pass}",
"wp option update permalink_structure '/%postname%/'"
]
},
"installer-paths": {
"web/wp-content/plugins/{$name}/": ["type:wordpress-plugin"],
"web/wp-content/themes/{$name}/": ["type:wordpress-theme"],
"web/private/scripts/quicksilver/{$name}/": ["type:quicksilver-script"]
}
},
"autoload": {
"classmap": [
"scripts/composer/ScriptHandler.php"
]
}
}