generated from gocanto/php-template
-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
63 lines (63 loc) · 1.68 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
{
"license": "MIT",
"name": "gocanto/http-client",
"homepage": "https://github.com/gocanto/http-client",
"type": "php-bundle",
"description": "Http client that handles retries, logging & dynamic headers.",
"minimum-stability": "dev",
"prefer-stable": true,
"keywords": [
"php",
"http",
"client"
],
"authors": [
{
"name": "Gustavo Ocanto",
"email": "gustavoocanto@gmail.com"
}
],
"support": {
"source": "https://github.com/gocanto/http-client",
"issues": "https://github.com/gocanto/http-client/issues"
},
"require": {
"php": "^8.0|^8.1|8.2",
"guzzlehttp/guzzle": "^7.5",
"psr/http-message": "^1.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.29",
"friendsofphp/php-cs-fixer": "^3.13",
"mockery/mockery": "^1.5",
"phpunit/phpunit": "^9.4",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^3.7"
},
"autoload": {
"psr-4": {
"Gocanto\\HttpClient\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Gocanto\\HttpClient\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"ergebnis/composer-normalize": true
}
},
"scripts" : {
"test": [
"php vendor/bin/phpunit --testsuite=Unit"
],
"fix-style": [
"vendor/bin/php-cs-fixer fix ./src ./tests --config=.php-cs-fixer.php"
]
}
}