-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
39 lines (39 loc) · 1.03 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": "placetopay/bancolombia-sdk",
"description": "A library to connect with Bancolombia APIs",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Diego Calle",
"email": "dnetix@gmail.com"
}
],
"autoload": {
"psr-4": {
"PlacetoPay\\BancolombiaSDK\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"require": {
"php": "^7.4|^8.0",
"ext-json": "*",
"guzzlehttp/guzzle": "^6.5.5|^7.0.1",
"psr/log": "^1.1",
"psr/simple-cache": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"friendsofphp/php-cs-fixer": "^3.0",
"symfony/var-dumper": "^5.2"
},
"scripts": {
"test": "vendor/bin/phpunit",
"testdox": "XDEBUG_MODE=coverage vendor/bin/phpunit --testdox --coverage-clover coverage.xml",
"php-cs-fixer": "vendor/bin/php-cs-fixer fix --stop-on-violation --using-cache=no"
}
}