File tree Expand file tree Collapse file tree 5 files changed +41
-5
lines changed
Expand file tree Collapse file tree 5 files changed +41
-5
lines changed Original file line number Diff line number Diff line change 1+ root = true
2+
3+ [* ]
4+ charset = utf-8
5+ end_of_line = lf
6+ insert_final_newline = true
7+ indent_style = space
8+ indent_size = 4
9+ trim_trailing_whitespace = true
10+
11+ [* .md ]
12+ trim_trailing_whitespace = false
13+
14+ [* .yml ]
15+ indent_style = space
16+ indent_size = 2
Original file line number Diff line number Diff line change 1- /vendor /
1+ .DS_Store
2+ .idea /
3+ vendor /
24composer.lock
Original file line number Diff line number Diff line change 11{
22 "name" : " openset/http" ,
33 "description" : " Http request for php" ,
4+ "keywords" : [
5+ " openset" ,
6+ " http"
7+ ],
48 "type" : " library" ,
5- "require" : {
6- "php" : " >=5.6" ,
7- "guzzlehttp/guzzle" : " ^6.3"
8- },
99 "license" : " MIT" ,
1010 "authors" : [
1111 {
1414 }
1515 ],
1616 "minimum-stability" : " stable" ,
17+ "require" : {
18+ "php" : " >=5.6" ,
19+ "guzzlehttp/guzzle" : " ^6.3"
20+ },
21+ "require-dev" : {
22+ "phpunit/phpunit" : " ^6.0"
23+ },
1724 "autoload" : {
1825 "psr-4" : {
1926 "Openset\\ " : " src/"
Original file line number Diff line number Diff line change 1+ <?php
2+
3+ final class HttpClientTest
4+ {
5+
6+ }
Original file line number Diff line number Diff line change 1+ <?php
2+
3+ define ('TEST_ROOT ' , __DIR__ );
4+
5+ require_once dirname (__DIR__ ) . '/vendor/autoload.php ' ;
You can’t perform that action at this time.
0 commit comments