-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
50 lines (50 loc) · 1.48 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
{
"name": "adrii/curl-helper",
"description": "CurlHelper is a streamlined PHP utility for easy cURL usage, supporting GET, POST, PUT, and DELETE methods. It simplifies HTTP requests by offering straightforward options and header settings, making web API interactions more accessible and efficient.",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/AdrianVillamayor/CurlHelper",
"keywords": [
"curl",
"http",
"api",
"http client",
"curl wrapper"
],
"authors": [
{
"name": "Adrian Villamayor",
"email": "adrian.villamayor@gmail.com",
"homepage": "https://github.com/AdrianVillamayor",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Adrii\\": "src/"
}
},
"require": {
"php": "^7.4 || ^8.0",
"ext-curl": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"scripts": {
"test": "phpunit --colors=always",
"test-curl": "phpunit test/CurlHelperTest.php",
"test-specific": "phpunit --filter"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"support": {
"issues": "https://github.com/AdrianVillamayor/CurlHelper/issues",
"source": "https://github.com/AdrianVillamayor/CurlHelper"
},
"minimum-stability": "stable",
"prefer-stable": true
}