-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·43 lines (43 loc) · 1.06 KB
/
composer.json
File metadata and controls
executable file
·43 lines (43 loc) · 1.06 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
{
"name": "pagarme/pagarme-magento2-module",
"license": "MIT",
"version": "2.8.1",
"type": "magento2-module",
"description": "Magento 2 Module Pagar.me",
"minimum-stability": "dev",
"require": {
"php": ">=7.1",
"pagarme/ecommerce-module-core": "~2.9.0"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"squizlabs/php_codesniffer": "^3.7",
"phpmd/phpmd": "@stable",
"pdepend/pdepend": "^2.13",
"friendsofphp/php-cs-fixer": "^3.0",
"sebastian/phpcpd": "^6.0",
"php-coveralls/php-coveralls": "^2.5",
"magento-ecg/coding-standard": "dev-master",
"rregeer/phpunit-coverage-check": "^0.1.3",
"mockery/mockery": "^1.6.12"
},
"authors":[
{
"name":"Open Source Team"
}
],
"scripts": {
"test": "phpunit"
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Pagarme\\Pagarme\\": ""
}
},
"config":{
"secure-http":false
}
}