-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.29 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.29 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
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "ricardomartins/pagbank-woocommerce",
"description": "Integração PagBank (PagSeguro) WooCommerce com desconto nas taxas oficiais",
"type": "wordpress-plugin",
"version": "4.54.0",
"license": "GPL-3.0",
"autoload": {
"psr-4": {
"RM_PagBank\\": "src/"
}
},
"authors": [
{
"name": "Ricardo Martins"
}
],
"platform":
{
"php": ">=7.4"
},
"require": {
"php": ">=7.4",
"ext-curl": "*",
"ext-json": "*",
"ext-dom": "*"
},
"suggest": {
"ext-openssl": "Enabling the OpenSSL extension allows you to use secure encryption and decryption functions."
},
"require-dev": {
"phpunit/phpunit": ">=9.6.33",
"yoast/phpunit-polyfills": "^2.0",
"squizlabs/php_codesniffer": "^3.10",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"wp-coding-standards/wpcs": "^3.0",
"phpstan/phpstan": "^1.11",
"codeception/codeception": "^5.1",
"codeception/module-asserts": "^3.0",
"codeception/module-webdriver": "^4.0",
"lucatume/wp-browser": "^4.3"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}