-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
76 lines (76 loc) · 2.21 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
{
"name": "linchpin/courier-notices",
"description": "Courier Notices, a highly extendable advanced front end notification plugin for WordPress",
"homepage": "https://github.com/linchpin/courier-notices",
"version": "1.7.1",
"authors": [
{
"name": "Linchpin",
"email": "[email protected]",
"homepage": "https://linchpin.com",
"role": "Developer"
},
{
"name": "Aaron Ware",
"role": "Developer",
"email": "[email protected]"
}
],
"keywords": [
"WordPress",
"linchpin",
"notices",
"notifications",
"alerts",
"gdpr"
],
"support": {
"issues": "https://github.com/linchpin/courier-notices/issues",
"source": "https://github.com/linchpin/courier-notices"
},
"license": "GPL-2.0-or-later",
"type": "wordpress-plugin",
"require": {
"php": ">=7.3",
"erusev/parsedown": "1.7.4"
},
"autoload": {
"psr-4": {
"CourierNotices\\": "src/"
}
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^1.0.0",
"wp-coding-standards/wpcs": "^2.3.0",
"squizlabs/php_codesniffer": "^3.10.2",
"phpcompatibility/php-compatibility": "^9.3.5",
"php-parallel-lint/php-parallel-lint": "^v1.4.0",
"php-parallel-lint/php-console-highlighter": "^1.0.0",
"saggre/phpdocumentor-markdown": "^0.1.4"
},
"scripts": {
"lint": [
"@php ./vendor/php-parallel-lint/php-parallel-lint/parallel-lint . -e php --exclude vendor --exclude .git"
],
"checkcs": [
"@php ./vendor/squizlabs/php_codesniffer/bin/phpcs --standard=./phpcs.xml ./"
],
"fixcs": [
"@php ./vendor/squizlabs/php_codesniffer/bin/phpcbf --standard=./phpcs.xml ./"
],
"test": [
"@php ./vendor/phpunit/phpunit/phpunit --no-coverage"
],
"coverage": [
"@php ./vendor/phpunit/phpunit/phpunit"
],
"lint-fix": "phpcbf .",
"php-cs-fixer": "./vendor/friendsofphp/php-cs-fixer/php-cs-fixer fix ./ --config=./.php-cs-fixer.dist.php",
"create-wiki": "phpDocumentor --directory=application --target=wiki --template='vendor/saggre/phpdocumentor-markdown/themes/markdown'"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}