forked from mercadopago/sdk-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·48 lines (48 loc) · 1.17 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
45
46
47
48
{
"name": "mercadopago/dx-php",
"description": "Mercado Pago PHP SDK",
"type": "library",
"homepage": "https://github.com/mercadopago/sdk-php",
"license": "MIT",
"version": "2.4.4",
"config": {
"platform": {
"php": "7.1"
}
},
"require": {
"php": ">=7.1.0||^8.0"
},
"require-dev": {
"phpunit/phpunit": "^5",
"symfony/yaml": "~2.5",
"phpmd/phpmd": "@stable",
"squizlabs/php_codesniffer": "2.3.*",
"sebastian/phpcpd": "*",
"doctrine/orm": "~2.3",
"vlucas/phpdotenv": "^2.5",
"phpdocumentor/phpdocumentor": "^2.0"
},
"autoload": {
"psr-4": {
"MercadoPago\\": [
"src/MercadoPago/",
"tests/",
"src/MercadoPago/Generic/",
"src/MercadoPago/Entities/",
"src/MercadoPago/Entities/Shared/"
]
}
},
"scripts": {
"test": "./vendor/bin/phpunit tests",
"generate-doc": "php phpDocumentor.phar --visibility=\"public,protected\" --template=\"responsive-twig\" --title=\"SDK Mercado Pago\" -d ./src/MercadoPaGo/Entities -t ./docs"
},
"repositories": [
{
"type": "composer",
"url": "https://packagist.org"
},
{ "packagist": false }
]
}