-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
62 lines (62 loc) · 1.34 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
{
"name": "tal7aouy/yusr",
"description": "A lightweight HTTP client library for PHP inspired by Guzzle.",
"version": "1.0.4",
"type": "library",
"license": "MIT",
"keywords": [
"http",
"client",
"curl",
"php",
"request",
"guzzle",
"psr-7",
"psr-18",
"api",
"rest",
"web service",
"yusr",
"lightweight",
"http-client",
"http-request",
"http-response",
"url",
"uri"
],
"authors": [
{
"name": "Mhammed Talhaouy",
"email": "tal7aouy@gmail.com"
}
],
"require": {
"php": ">=7.4 || ^8.0",
"ext-json": "*",
"ext-curl": "*",
"psr/http-client": "^1.0",
"psr/http-message": "^2.0"
},
"autoload": {
"psr-4": {
"Yusr\\Http\\": "src/"
}
},
"require-dev": {
"pestphp/pest": "^3.3",
"laravel/pint": "^1.18",
"mockery/mockery": "^1.6",
"rector/rector": "^1.2"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"scripts": {
"lint": "pint --test",
"lint:fix": "pint",
"test": "./vendor/bin/pest",
"rector": "./vendor/bin/rector process src tests"
}
}