-
Notifications
You must be signed in to change notification settings - Fork 80
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 1.05 KB
/
composer.json
File metadata and controls
35 lines (35 loc) · 1.05 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
{
"name": "angelleye/paypal-woocommerce",
"description": "PayPal payment gateway extension for WooCommerce.",
"type": "wordpress-plugin",
"license": "GPL-3.0",
"authors": [
{
"name": "Angell EYE",
"email": "service@angelleye.com"
}
],
"require": {
"php": ">=5.4.0",
"composer/installers": "^2.2"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"phpcompatibility/php-compatibility": "^9.3",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"squizlabs/php_codesniffer": "^3.10",
"wp-coding-standards/wpcs": "^3.0"
},
"scripts": {
"lint:errors": "phpcs --standard=phpcs-errors.xml.dist",
"lint": "phpcs --standard=phpcs.xml.dist",
"lint:fix": "phpcbf --standard=phpcs.xml.dist"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/installers": true
}
}
}