-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
77 lines (77 loc) · 2.16 KB
/
composer.json
File metadata and controls
77 lines (77 loc) · 2.16 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "farzai/transport",
"description": "A modern, PSR-compliant HTTP client for PHP with middleware architecture, advanced retry strategies, and fluent API for building requests",
"keywords": [
"http",
"http-client",
"psr-7",
"psr-18",
"rest-client",
"api-client",
"middleware",
"retry",
"cookie",
"multipart",
"form-data",
"file-upload",
"fluent-api",
"psr"
],
"homepage": "https://github.com/farzai/transport-php",
"license": "MIT",
"authors": [
{
"name": "parsilver",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"farzai/support": "^1.4",
"nyholm/psr7": "^1.8",
"php-http/discovery": "^1.19",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^2.0"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.8",
"laravel/pint": "^1.2",
"mockery/mockery": "^1.6",
"pestphp/pest": "^2.30",
"phpstan/phpstan": "^1.10",
"spatie/ray": "^1.28",
"symfony/http-client": "^6.0|^7.0"
},
"suggest": {
"guzzlehttp/guzzle": "Popular HTTP client implementation with extensive features",
"symfony/http-client": "Modern HTTP client with async support and HTTP/2"
},
"autoload": {
"psr-4": {
"Farzai\\Transport\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Farzai\\Transport\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/pest",
"test-coverage": "vendor/bin/pest --coverage",
"format": "vendor/bin/pint",
"analyse": "vendor/bin/phpstan analyse --memory-limit=2G",
"analyse:baseline": "vendor/bin/phpstan analyse --memory-limit=2G --generate-baseline"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": true,
"phpstan/extension-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}