-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
132 lines (132 loc) · 5.04 KB
/
composer.json
File metadata and controls
132 lines (132 loc) · 5.04 KB
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "alleotech/project-template-wordpress",
"description": "Template for new WordPress projects",
"keywords": ["wordpress", "project", "template", "setup", "rapid-development", "dry"],
"type": "project",
"license": "MIT",
"homepage": "https://alleo.tech",
"authors": [
{
"name": "AlleoTech Ltd",
"email": "hello@alleo.tech",
"homepage": "https://alleo.tech",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/alleotech/project-template-wordpress/issues",
"source": "https://github.com/alleotech/project-template-wordpress"
},
"config": {
"secure-http": false,
"sort-packages": true,
"optimize-autoloader": true,
"platform": {
"php": "7.3"
}
},
"repositories": [
{
"type": "composer",
"url": "https://wpackagist.org"
}
],
"require": {
"aws/aws-sdk-php": "^3.52",
"fancyguy/webroot-installer": "1.1.0",
"johnpbloch/wordpress-core": "5.4.0",
"johnpbloch/wordpress-core-installer": "2.0.0",
"josegonzalez/dotenv": "^3.2",
"qobo/qobo-robo": "^2.0",
"qobo/qobo-wp-generic-theme": "1.1.3",
"wp-cli/wp-cli": "^1.1",
"wpackagist-plugin/akismet": "4.1.4",
"wpackagist-plugin/amp": "1.5.3",
"wpackagist-plugin/bad-behavior": "2.2.24",
"wpackagist-plugin/bootstrap-for-contact-form-7": "1.4.8",
"wpackagist-plugin/classic-editor": "1.5",
"wpackagist-plugin/contact-form-7": "5.1.7",
"wpackagist-plugin/contact-form-7-honeypot": "1.14.1",
"wpackagist-plugin/custom-upload-dir": "3.4.4",
"wpackagist-plugin/disable-comments": "1.10.2",
"wpackagist-plugin/disable-wordpress-updates": "1.6.6",
"wpackagist-plugin/fast-velocity-minify": "2.8.3",
"wpackagist-plugin/glue-for-yoast-seo-amp": "0.6",
"wpackagist-plugin/google-analytics-for-wordpress": "7.10.4",
"wpackagist-plugin/google-sitemap-generator": "4.1.0",
"wpackagist-plugin/jetpack": "8.4.2",
"wpackagist-plugin/listo": "1.2.2",
"wpackagist-plugin/multiple-post-thumbnails": "1.7",
"wpackagist-plugin/page-links-to": "3.3.3",
"wpackagist-plugin/pubsubhubbub": "3.0.3",
"wpackagist-plugin/resize-image-after-upload": "1.8.6",
"wpackagist-plugin/restricted-site-access": "7.2.0",
"wpackagist-plugin/shortcodes-ultimate": "5.8.1",
"wpackagist-plugin/tiny-compress-images": "3.2.1",
"wpackagist-plugin/uk-cookie-consent": "2.3.15",
"wpackagist-plugin/wordpress-seo": "13.5",
"wpackagist-plugin/wp-media-library-categories": "1.9.8",
"wpackagist-plugin/wp-super-cache": "1.7.1",
"wpackagist-plugin/wp-theme-plugin-editor-disable": "1.0.0"
},
"require-dev": {
"brainmaestro/composer-git-hooks": "*",
"brianium/paratest": "*",
"phpstan/extension-installer": "*",
"phpstan/phpstan": "*",
"phpstan/phpstan-deprecation-rules": "*",
"phpstan/phpstan-phpunit": "*",
"phpunit/phpunit": "*",
"pyrech/composer-changelogs": "*",
"squizlabs/php_codesniffer": "*",
"thecodingmachine/phpstan-strict-rules": "*",
"wp-coding-standards/wpcs": "*",
"wpackagist-plugin/debug-bar": "1.0",
"wpackagist-plugin/debug-bar-console": "0.3",
"wpackagist-plugin/p3-profiler": "1.5.3.9",
"wpackagist-plugin/theme-check": "*",
"wpackagist-plugin/user-switching": "1.5.4"
},
"suggest": {
"wpackagist-plugin/regenerate-thumbnails": "Regenerate Thumbnails allows you to regenerate the thumbnails for your image attachments.",
"ext-xdebug": "Allows code coverage reports and advanced debugging"
},
"autoload": {
"psr-4": {
"Qobo\\Robo\\": "build/Robo/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Test\\": "tests/"
}
},
"scripts": {
"test": [
"phpcs",
"phpstan analyse",
"phpunit --colors=always --no-coverage"
],
"test-coverage": [
"phpcs",
"phpstan analyse",
"phpunit --colors=always"
],
"post-install-cmd": "cghooks add",
"post-update-cmd": "cghooks update"
},
"scripts-descriptions": {
"test": "Runs phpcs, phpstan and phpunit without coverage",
"test-coverage": "Runs phpcs, phpstan and phpunit with coverage enabled"
},
"extra": {
"hooks": {
"pre-commit": "PHPCS_FILES=$(git diff-index --name-only --cached --diff-filter=ACMR HEAD 'tests/**.php' 'src/**.php' 'webroot/**.php'); if [ \"$PHPCS_FILES\" ]; then ./vendor/bin/phpcs $PHPCS_FILES; fi"
},
"wordpress-install-dir": "webroot/wp",
"installer-paths": {
"webroot/wp-content/plugins/{$name}": ["type:wordpress-plugin"],
"webroot/wp-content/themes/{$name}": ["type:wordpress-theme"]
}
}
}