-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
54 lines (54 loc) · 1.23 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
{
"name": "nguyenanhung/requests",
"type": "library",
"description": "My Requests Library",
"keywords": [
"request",
"http",
"curl",
"get_content",
"rest",
"soap"
],
"homepage": "https://github.com/nguyenanhung/requests",
"license": "GPL-3.0",
"authors": [
{
"name": "Nguyen An Hung",
"email": "[email protected]",
"homepage": "https://nguyenanhung.com",
"role": "Developer"
}
],
"require": {
"php": "^8.0 || ^7.0",
"ext-curl": "*",
"ext-json": "*",
"ext-iconv": "*",
"symfony/http-foundation": "^7.0 || ^6.0 || ^5.4 || ^4.4 || ^3.4",
"symfony/polyfill-mbstring": ">= 1.0",
"php-curl-class/php-curl-class": "^9 || ^8",
"guzzlehttp/guzzle": "^7 || ^6",
"nguyenanhung/nusoap": "^0.9",
"nguyenanhung/my-debug": "^4.0 || ^3.0 || ^2.0",
"nguyenanhung/ip-helper": "^2.0 || ^1.0"
},
"require-dev": {
"kint-php/kint": "^5 || ^4 || ^3 || ^2 || ^1"
},
"suggest": {
"ext-curl": "Needed to support cURL",
"ext-json": "Needed to support JSON",
"ext-iconv": "Needed to support iconv",
"ext-openssl": "Needed to support SSL",
"ext-mbstring": "Needed to support mb_string"
},
"autoload": {
"psr-4": {
"nguyenanhung\\MyRequests\\": "src/"
},
"files": [
"helpers/helpers.php"
]
}
}