-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
36 lines (36 loc) · 1.09 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
{
"name": "reepay/checkout",
"description": "Get a plug-n-play payment solution for WooCommerce, that is easy to use, highly secure and is built to maximize the potential of your e-commerce.",
"type": "wordpress-plugin",
"license": "GPL",
"version": "1.7.11",
"autoload": {
"psr-4": {
"Reepay\\Checkout\\": "includes/",
"Reepay\\Checkout\\Tests\\Helpers\\": "tests/helpers/",
"Reepay\\Checkout\\Tests\\Mocks\\": "tests/mocks/",
"Reepay\\Checkout\\Tests\\Unit\\": "tests/unit/"
}
},
"authors": [
{
"name": "reepay"
}
],
"minimum-stability": "stable",
"require-dev": {
"phpunit/phpunit": "^8",
"squizlabs/php_codesniffer": "^3.8.1",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0.0",
"yoast/phpunit-polyfills": "^1.0",
"wp-coding-standards/wpcs": "^3.0"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require": {
"ext-json": "*"
}
}