forked from mercadopago/sdk-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·48 lines (48 loc) · 1.01 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",
"type": "library",
"homepage": "https://github.com/mercadopago/dx-php",
"license": "MIT",
"config": {
"platform": {
"php": "5.6"
}
},
"authors": [
{
"name": "imasson",
"role": "Developer",
"homepage": "https://github.com/imasson"
},
{
"name": "joelibaceta",
"role": "Developer",
"homepage": "https://github.com/joelibaceta"
}
],
"require": {
"php": ">=5.5.0",
"doctrine/common": "~2.6",
"doctrine/annotations": "~1.4"
},
"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"
},
"autoload": {
"psr-4": {
"MercadoPago\\": [
"src/MercadoPago/",
"tests/",
"src/MercadoPago/Generic/",
"src/MercadoPago/Entities/",
"src/MercadoPago/Entities/Shared/"
]
}
}
}