Skip to content

Commit 217c69a

Browse files
composer.json update
1 parent d541bf5 commit 217c69a

File tree

1 file changed

+53
-31
lines changed

1 file changed

+53
-31
lines changed

composer.json

Lines changed: 53 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,55 @@
11
{
2-
"name": "async-http/async-http",
3-
"description": "Async HTTP client",
4-
"type": "library",
5-
"require": {
6-
"php": "^8.3",
7-
"ext-sockets": "*",
8-
"psr/http-client": "^1.0",
9-
"psr/http-message": "^2.0"
10-
},
11-
"require-dev": {
12-
"phpunit/phpunit": "^12.2",
13-
"phpstan/phpstan": "^2.1",
14-
"laravel/pint": "^1.23"
15-
},
16-
"license": "MIT",
17-
"autoload": {
18-
"psr-4": {
19-
"Async\\Http\\": "src/Http/"
20-
}
21-
},
22-
"authors": [
23-
{
24-
"name": "Sushil Kumar",
25-
"email": "[email protected]"
26-
}
27-
],
28-
"scripts": {
29-
"test": "vendor/bin/phpunit"
30-
},
31-
"minimum-stability": "stable",
32-
"prefer-stable": true
2+
"name": "async-http/async-http",
3+
"description": "🚀 Async, non-blocking HTTP client using PHP streams",
4+
"type": "library",
5+
"license": "MIT",
6+
"autoload": {
7+
"psr-4": {
8+
"Async\\Http\\": "src/Http/"
9+
}
10+
},
11+
"autoload-dev" {
12+
"psr-4": {
13+
"Tests\\": "tests/"
14+
}
15+
},
16+
"require": {
17+
"php": ">=8.1",
18+
"psr/http-client": "^1.0",
19+
"psr/http-message": "^2.0"
20+
},
21+
"require-dev": {
22+
"phpunit/phpunit": "^12.2",
23+
"phpstan/phpstan": "^2.1",
24+
"laravel/pint": "^1.23"
25+
},
26+
"support": {
27+
"issues": "https://github.com/CodeWithSushil/async-http/issues",
28+
"source": "https://github.com/CodeWithSushil/async-http"
29+
},
30+
"authors": [
31+
{
32+
"name": "Sushil Kumar",
33+
"email": "[email protected]"
34+
}
35+
],
36+
"funding": [
37+
{
38+
"type": "github",
39+
"url": "https://github.com/sponsors/CodeWithSushil"
40+
}
41+
],
42+
"scripts": {
43+
"test": "vendor/bin/phpunit"
44+
}
45+
"config": {
46+
"sort-packages": true,
47+
"preferred-install": "dist",
48+
"optimize-autoloader": true,
49+
"allow-plugins": {
50+
"composer/package-versions-deprecated": true
51+
}
52+
},
53+
"minimum-stability": "dev",
54+
"prefer-stable": true
3355
}

0 commit comments

Comments
 (0)