Skip to content

Commit 6f7262c

Browse files
author
Openset
committed
Add: composer init
1 parent e692ba7 commit 6f7262c

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

composer.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"name": "openset/http",
3+
"description": "Http request for php",
4+
"type": "library",
5+
"require": {
6+
"guzzlehttp/guzzle": "^6.3"
7+
},
8+
"license": "MIT",
9+
"authors": [
10+
{
11+
"name": "Openset",
12+
"email": "openset.wang@gmail.com"
13+
}
14+
],
15+
"minimum-stability": "stable",
16+
"autoload": {
17+
"psr-4": {
18+
"Openset\\": "src/"
19+
}
20+
}
21+
}

src/HttpClient.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<?php

0 commit comments

Comments
 (0)