-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
60 lines (60 loc) · 1.59 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
{
"name": "codin/http-client",
"version": "1.0.0",
"description": "Tiny PSR-18 Http Client",
"license": "MIT",
"type": "library",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Kieron",
"email": "hello@madebykieron.co.uk",
"homepage": "http://madebykieron.co.uk",
"role": "Developer"
}
],
"provide": {
"psr/http-client-implementation": "1.0"
},
"require": {
"php": ">=8.3",
"ext-curl": "*",
"nyholm/psr7": "@stable",
"psr/http-client": "@stable",
"psr/http-factory": "@stable",
"psr/http-message": "@stable"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "@stable",
"friends-of-phpspec/phpspec-code-coverage": "@stable",
"phpspec/phpspec": "@stable",
"phpstan/phpstan": "@stable",
"spatie/ray": "@stable",
"symfony/process": "@stable"
},
"autoload": {
"psr-4": {
"Codin\\HttpClient\\": "src/"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"bin-dir": "bin"
},
"scripts": {
"psr": [
"./bin/php-cs-fixer fix . --allow-risky=yes --rules=@PSR2,no_unused_imports,ordered_imports,ordered_interfaces,single_quote,trailing_comma_in_multiline"
],
"test": [
"phpstan analyse",
"phpspec run"
],
"clean": [
"rm -rf ./bin",
"rm -rf ./vendor",
"rm ./composer.lock"
]
}
}