This repository has been archived by the owner on Mar 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
64 lines (64 loc) · 1.72 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
{
"name": "felixarntz/wp-gdpr-cookie-notice",
"description": "Simple performant cookie consent notice that supports AMP, Web Stories, granular cookie control and live preview customization.",
"version": "1.0.0-rc.2",
"license": "GPL-2.0-or-later",
"type": "wordpress-plugin",
"keywords": [
"wordpress",
"plugin",
"gdpr",
"cookie notice",
"cookie consent",
"amp",
"web stories",
"granular cookie control",
"customizer"
],
"homepage": "https://wordpress.org/plugins/wp-gdpr-cookie-notice/",
"authors": [
{
"name": "Felix Arntz",
"email": "[email protected]",
"homepage": "https://felix-arntz.me",
"role": "Lead Developer"
}
],
"support": {
"issues": "https://github.com/felixarntz/wp-gdpr-cookie-notice/issues"
},
"config": {
"platform": {
"php": "7.0"
},
"sort-packages": true
},
"require": {
"php": ">=7.0",
"composer/installers": "^1"
},
"require-dev": {
"automattic/vipwpcs": "^2",
"brain/monkey": "~2.0.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
"mockery/mockery": "~0.9.0",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"phpmd/phpmd": "^2.6",
"phpunit/phpunit": "^6",
"roots/wordpress": ">=4.9.6",
"squizlabs/php_codesniffer": "^3.3",
"wp-coding-standards/wpcs": "^2",
"wp-phpunit/wp-phpunit": ">=4.9.6",
"yoast/phpunit-polyfills": "^1.0"
},
"extra": {
"wordpress-install-dir": "vendor/roots/wordpress"
},
"scripts": {
"lint": "phpcs",
"lint-fix": "phpcbf",
"analyze": "phpmd src text phpmd.xml.dist",
"test-integration": "phpunit -c phpunit.integration.xml.dist",
"test-unit": "phpunit -c phpunit.unit.xml.dist"
}
}