-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
39 lines (39 loc) · 1.06 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
{
"name": "logicssoftware/braspag-php-sdk",
"description" : "SDK de integração com a API de pagamentos da Braspag",
"type" : "library",
"keywords": ["sdk", "payment", "php", "marketplace", "split", "braspag", "cielo"],
"license" : "MIT",
"homepage" : "https://github.com/logics/braspag-php-sdk",
"require" : {
"php" : "^7.1",
"ext-json": "*",
"ext-curl": "*"
},
"authors": [
{
"name": "Romeu Godoi",
"email": "romeu.godoi@gmail.com"
}
],
"autoload" : {
"psr-4" : {
"Braspag\\" : "src/Braspag"
}
},
"require-dev": {
"phpunit/phpunit": "^6.3",
"squizlabs/php_codesniffer": "3.*",
"friendsofphp/php-cs-fixer": "^2.15"
},
"scripts": {
"test": [
"@phpunit",
"@phpcs"
],
"phpunit": "phpunit",
"phpcs": "phpcs --standard=phpcs.xml",
"check-style": "php-cs-fixer fix --diff --verbose --dry-run .",
"fix-style": "php-cs-fixer fix ."
}
}