-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
62 lines (62 loc) · 1.76 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "docta/mercadolibre",
"description": "MercadoLibre PHP SDK",
"license": "MIT",
"authors": [
{
"name": "Lucas Banegas",
"email": "[email protected]",
"homepage": "https://github.com/lucascono"
}
],
"keywords": [
"api",
"app",
"application",
"client",
"meli",
"mercadolibre",
"mercadolivre",
"oauth",
"oauth2",
"php",
"provider",
"sdk"
],
"require": {
"php": "^5.6|^7.0",
"docta/oauth2-mercadolibre": "^1.0"
},
"require-dev": {
"apigen/apigen": "^4.1",
"mockery/mockery": "^1.1",
"phpunit/phpunit": "^5.7",
"squizlabs/php_codesniffer": "^3.2"
},
"suggest": {
"ext-xdebug": "*"
},
"autoload": {
"psr-4": {
"Docta\\MercadoLibre\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Docta\\MercadoLibre\\Test\\": "tests/src/"
}
},
"scripts": {
"all": ["@fix", "@test", "@docs"],
"fix": "phpcbf --colors --standard=PSR2 -q ./src ./tests",
"test": ["@test-clean", "@test-phpunit-common", "@test-code"],
"test-travis": ["@test-clean", "@test-phpunit-travis", "@test-code"],
"test-clean": "rm -rdf ./build",
"test-phpunit-common": "phpunit --colors=always --coverage-html ./build/coverage",
"test-phpunit-travis": "phpunit --colors=always --coverage-clover ./build/logs/clover.xml",
"test-code": "phpcs --colors --standard=PSR2 -p ./src ./tests",
"docs": ["@docs-clean", "@docs-apigen"],
"docs-clean": "rm -rdf ./docs",
"docs-apigen": "apigen generate --config ./.apigen.yml"
}
}