forked from PopupMaker/Popup-Maker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.24 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
{
"name": "popupmaker/popup-maker",
"type": "wordpress-plugin",
"description": "The easiest way to create any popup imaginable with WordPress.",
"keywords": [
"popup maker",
"pum",
"wp popup maker"
],
"homepage": "https://wppopupmaker.com/",
"license": "GPL-2.0-or-later",
"support": {
"issues": "https://wppopupmaker.com/support"
},
"require": {
"php": ">=5.6.0",
"composer/installers": "~1.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.0@dev",
"code-atlantic/coding-standards": "dev-develop",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
"phpunit/phpunit": "^7.5",
"phpcompatibility/phpcompatibility-wp": "^2.1"
},
"minimum-stability": "dev",
"scripts": {
"phpcs": "vendor/bin/phpcs --report-full --report-checkstyle=./phpcs-report.xml",
"lint": "vendor/bin/phpcs ./popup-maker.php ./classes/**/*.php ./includes/**/*.php",
"lint:priority": "vendor/bin/phpcs --severity=8 ./popup-maker.php ./classes/**/*.php ./includes/**/*.php",
"tests": "vendor/bin/phpunit"
},
"config": {
"platform": {
"php": "7.4"
},
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}