This repository has been archived by the owner on Jun 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
101 lines (101 loc) · 2.51 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
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "grrr-amsterdam/wordpress-scaffold",
"type": "project",
"description": "A modern WordPress scaffold",
"keywords": [
"wordpress",
"bedrock",
"twig",
"capistrano",
"gulp"
],
"license": "BSD-3-Clause",
"homepage": "https://grrr.nl/",
"authors": [
{
"name": "Ramiro Hammen",
"email": "ramiro@grrr.nl"
},
{
"name": "Koen Schaft",
"email": "koen@grrr.nl"
}
],
"config": {
"platform": {
"php": "7.1"
},
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
}
],
"require": {
"php": ">=7.1",
"composer/installers": "^1.2.0",
"drewm/mailchimp-api": "^2.5",
"grrr-amsterdam/garp-functional": "^4.0",
"grrr-amsterdam/simply-static": "^3.0",
"grrr-amsterdam/simply-static-deploy": "^1.0",
"johnpbloch/wordpress": "^5.0.0",
"oscarotero/env": "^2.0",
"roots/soil": "^3.7",
"roots/wp-password-bcrypt": "^1.0.0",
"sentry/sdk": "^2.0",
"spatie/schema-org": "^2.7",
"vlucas/phpdotenv": "^4.0.0",
"wikimedia/composer-merge-plugin": "^1.4",
"wpackagist-plugin/acf-content-analysis-for-yoast-seo": "^2.0",
"wpackagist-plugin/admin-menu-editor": "^1.6",
"wpackagist-plugin/amazon-s3-and-cloudfront": "^2.0",
"wpackagist-plugin/better-search-replace": "^1.3",
"wpackagist-plugin/classic-editor": "^1.3",
"wpackagist-plugin/safe-svg": "^1.9",
"wpackagist-plugin/timber-library": "^1.8",
"wpackagist-plugin/wordpress-seo": "^14.0",
"wpackagist-plugin/wp-ses": "^1.1"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.0",
"wp-cli/wp-cli-bundle": "^2.3"
},
"autoload": {
"psr-4": {
"Grrr\\Root\\" : "lib/"
}
},
"extra": {
"merge-plugin": {
"include": [
"web/app/themes/*/composer.json"
],
"recurse": true,
"replace": false,
"ignore-duplicates": false,
"merge-dev": false,
"merge-extra": false,
"merge-extra-deep": false,
"merge-scripts": false
},
"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": {
"setup": [
"Grrr\\Root\\ProjectSetup::setup"
],
"test": [
"vendor/bin/phpcs"
]
}
}