-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
88 lines (88 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
84
85
86
87
88
{
"name": "nyco/working-nyc",
"description": "Start your journey towards a career through work, job training, and education",
"version": "3.0.0",
"authors": [
{
"name": "NYC Opportunity",
"email": "[email protected]",
"homepage": "http://nyc.gov/opportunity"
}
],
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
}
],
"require": {
"nyco/wp-assets": "^1.4",
"nyco/wp-config": "^1",
"nyco/wp-gc-templates-sync": "^0.0.2",
"nyco/wp-og-images": "^0.0.2",
"spatie/schema-org": "3.8.0",
"timber/timber": "^1",
"wpackagist-plugin/acf-to-rest-api": "*",
"wpackagist-plugin/adminimize": "*",
"wpackagist-plugin/aryo-activity-log": "*",
"wpackagist-plugin/enable-media-replace": "*",
"wpackagist-plugin/gathercontent-import": "3.1.14",
"wpackagist-plugin/google-authenticator": "*",
"wpackagist-plugin/limit-login-attempts-reloaded": "*",
"wpackagist-plugin/loggedin": "*",
"wpackagist-plugin/members": "*",
"wpackagist-plugin/post-expirator": "*",
"wpackagist-plugin/regenerate-thumbnails": "*",
"wpackagist-plugin/rollbar": "*",
"wpackagist-plugin/simple-custom-post-order": "*",
"wpackagist-plugin/wordpress-importer": "*",
"wpackagist-plugin/wp-all-export": "*",
"wpackagist-plugin/wp-all-import": "*",
"wpackagist-plugin/wp-bitly": "*",
"wpackagist-plugin/wp-security-questions": "*",
"wpackagist-plugin/wps-hide-login": "*",
"wpackagist-plugin/wpscan": "*"
},
"require-dev": {
"filp/whoops": "*",
"nyco/wp-login": "^0.0.1",
"squizlabs/php_codesniffer": "*",
"whoops/soap": "*",
"wpackagist-plugin/query-monitor": "*",
"wpackagist-plugin/redis-cache": "*",
"wpackagist-plugin/wp-crontrol": "*"
},
"scripts": {
"development": [
"composer dump-autoload --ignore-platform-req=php"
],
"production": [
"composer dump-autoload --no-dev --optimize --ignore-platform-req=php"
],
"predeploy": [
"@development",
"@lint",
"@production"
],
"lint": [
"vendor/bin/phpcs --standard=phpcs.xml"
],
"fix": [
"vendor/bin/phpcbf --standard=phpcs.xml"
],
"version": [
"composer update nothing --ignore-platform-req=php",
"@production"
],
"deps": [
"composer show --tree"
]
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"allow-plugins": {
"composer/installers": true
}
}
}