-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 1.27 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
{
"name": "jacques/php-smartcall-httpclient",
"description": "Providers an HTTP Client around SmartCall's Restful (v3) API for both Smartcall SmartLoad and SmartRICA",
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"require": {
"php": "^8.2",
"guzzlehttp/guzzle": "^7.9"
},
"require-dev": {
"brianium/paratest": "^7.6",
"brick/varexporter": "^0.5.0",
"covergenius/phpunit-testlistener-vcr": "^4.2",
"friendsofphp/php-cs-fixer": "^3.64",
"phpmd/phpmd": "^2.15",
"phpunit/php-invoker": "^5.0",
"phpunit/phpunit": "^11.4",
"rector/rector": "^1.2",
"squizlabs/php_codesniffer": "^3.10"
},
"autoload": {
"psr-4": {
"Jacques\\Smartcall\\HttpClient\\": "src/"
}
},
"license": "MIT",
"authors": [
{
"name": "Jacques Marneweck",
"email": "jacques@powertrip.co.za"
}
],
"scripts": {
"test": [
"XDEBUG_MODE=coverage vendor/bin/phpunit --colors --debug --configuration=tests/phpunit.xml --coverage-clover build/logs/clover.xml --coverage-text"
],
"phpcs": "vendor/bin/phpcs --standard=PSR1,PSR2 --extensions=php src tests"
}
}