-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
64 lines (64 loc) · 2.41 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
63
64
{
"name": "astrotechlabs/asaas-sdk",
"description": "Pacote facilitador para integrações com Asaas Pagamento",
"type": "sdk",
"license": "MIT",
"minimum-stability": "dev",
"keywords": [
"asaas",
"asaas-pix",
"asaas-payments",
"asaas-sdk",
"asaas-php"
],
"scripts": {
"test": "XDEBUG_MODE=debug; phpunit --testdox --do-not-cache-result --configuration tests/phpunit.xml",
"test:unit": "XDEBUG_MODE=debug; phpunit --do-not-cache-result --configuration tests/phpunit.xml --testdox --testsuite unit",
"test:integration": "XDEBUG_MODE=debug; phpunit --do-not-cache-result --configuration tests/phpunit.xml --testsuite integration",
"test:e2e": "XDEBUG_MODE=debug; phpunit --do-not-cache-result --configuration tests/phpunit.xml --testsuite e2e",
"test:filter": "XDEBUG_MODE=develop; phpunit --testdox --do-not-cache-result --configuration tests/phpunit.xml --filter",
"test:coverage": "XDEBUG_MODE=coverage; phpunit --configuration tests/phpunit.xml --coverage-html tests/coverage/html",
"test:coverage-ci": "XDEBUG_MODE=coverage; phpunit --configuration tests/phpunit.xml --coverage-text --colors=never",
"phpcs": "phpcs --standard=phpcs.xml",
"phpcs:fix": "php-cs-fixer fix --config=.php-cs-fixer.php",
"phpcs:check": "php-cs-fixer fix --config=../..php-cs-fixer.php --allow-risky=yes --diff --verbose --dry-run .",
"phpcbf": "phpcbf -w -q > /dev/null || true"
},
"require": {
"php": "^8.2",
"ext-curl": "*",
"ext-json": "*",
"vlucas/phpdotenv": "^5.3",
"ramsey/uuid": "^4.1",
"psr/http-message": "^1.0",
"guzzlehttp/psr7": "^2.4",
"php-di/php-di": "^7.0",
"guzzlehttp/guzzle": "^7.8"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.5",
"friendsofphp/php-cs-fixer": "^3",
"phpunit/phpunit": "^9.5",
"fakerphp/faker": "^1.14",
"dg/bypass-finals": "^1.3"
},
"autoload": {
"psr-4": {
"AstrotechLabs\\AsaasSdk\\": "src\\"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests\\"
}
},
"config": {
"bin-compat": "full",
"process-timeout": 1800,
"optimize-autoloader": true,
"preferred-install": "dist",
"platform": {
"php": "8.2"
}
}
}