-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
44 lines (44 loc) · 1.07 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
43
44
{
"name": "mp-plugins/php-sdk",
"description": "Mercado Pago Plugins PHP-SDK",
"version": "2.12.3",
"type": "library",
"scripts": {
"lint": "./vendor/bin/phpcs -q --report=checkstyle --standard=PSR2 src",
"test": "./vendor/bin/phpunit --coverage-html coverage --coverage-clover clover.xml --coverage-text --testdox --colors=auto --testsuite pp-php-sdk-unit",
"integration-test": "./vendor/bin/phpunit --testsuite pp-php-sdk-integration"
},
"autoload": {
"psr-4": {
"MercadoPago\\PP\\Sdk\\": [
"src"
]
}
},
"autoload-dev": {
"psr-4": {
"MercadoPago\\PP\\Sdk\\Tests\\Unit\\": [
"tests/unit"
],
"MercadoPago\\PP\\Sdk\\Tests\\Integration\\": [
"tests/integration"
]
}
},
"require": {
"php": ">=7",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "9.5.27",
"squizlabs/php_codesniffer": "3.7.2"
},
"license": "proprietary",
"authors": [
{
"name": "Mercado Pago SMB",
"email": "[email protected]"
}
],
"minimum-stability": "stable"
}