File tree Expand file tree Collapse file tree 3 files changed +29
-2
lines changed
Expand file tree Collapse file tree 3 files changed +29
-2
lines changed Original file line number Diff line number Diff line change @@ -28,3 +28,4 @@ Homestead.json
2828.env.production
2929.phpactor.json
3030auth.json
31+ composer.lock
Original file line number Diff line number Diff line change 1+ {
2+ "name" : " async-http/async-http" ,
3+ "description" : " Async HTTP client" ,
4+ "type" : " library" ,
5+ "require" : {
6+ "php" : " ^8.4" ,
7+ "ext-sockets" : " *"
8+ },
9+ "require-dev" : {
10+ "phpunit/phpunit" : " ^12.2"
11+ },
12+ "license" : " MIT" ,
13+ "autoload" : {
14+ "psr-4" : {
15+ "Async\\ Http\\ " : " src/Http/"
16+ }
17+ },
18+ "authors" : [
19+ {
20+ "name" : " Sushil Kumar" ,
21+ "email" : " sushilkumbhar77@gmail.com"
22+ }
23+ ],
24+ "minimum-stability" : " stable" ,
25+ "prefer-stable" : true
26+ }
Original file line number Diff line number Diff line change 11<?php
2- namespace AsyncHttp \Http ;
2+ namespace Async \Http ;
33
44class MultiAsyncHandler
55{
@@ -45,4 +45,4 @@ private function extractSocket(\Generator $gen): mixed {
4545 }
4646 return null ;
4747 }
48- }
48+ }
You can’t perform that action at this time.
0 commit comments