Skip to content

Commit c415fcc

Browse files
committed
Merge remote-tracking branch 'upstream/master' into session
2 parents c120011 + 1d0ccd4 commit c415fcc

24 files changed

+478
-33
lines changed

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/tests export-ignore

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) Hyperf
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

LICENSE.md

Lines changed: 0 additions & 9 deletions
This file was deleted.

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"zendframework/zend-mime": "^2.7"
1515
},
1616
"require-dev": {
17-
"swoft/swoole-ide-helper": "~1.0.0",
17+
"swoft/swoole-ide-helper": "dev-master",
1818
"phpunit/phpunit": "^5.7"
1919
},
2020
"autoload": {
@@ -32,7 +32,7 @@
3232
},
3333
"extra": {
3434
"branch-alias": {
35-
"dev-master": "1.0-dev"
35+
"dev-master": "1.1-dev"
3636
},
3737
"hyperf": {
3838
}

src/Base/MessageTrait.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* @link https://www.hyperf.io
88
* @document https://doc.hyperf.io
99
* @contact group@hyperf.io
10-
* @license https://github.com/hyperf-cloud/hyperf/blob/master/LICENSE
10+
* @license https://github.com/hyperf/hyperf/blob/master/LICENSE
1111
*/
1212

1313
namespace Hyperf\HttpMessage\Base;

src/Base/Request.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* @link https://www.hyperf.io
88
* @document https://doc.hyperf.io
99
* @contact group@hyperf.io
10-
* @license https://github.com/hyperf-cloud/hyperf/blob/master/LICENSE
10+
* @license https://github.com/hyperf/hyperf/blob/master/LICENSE
1111
*/
1212

1313
namespace Hyperf\HttpMessage\Base;

src/Base/Response.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* @link https://www.hyperf.io
88
* @document https://doc.hyperf.io
99
* @contact group@hyperf.io
10-
* @license https://github.com/hyperf-cloud/hyperf/blob/master/LICENSE
10+
* @license https://github.com/hyperf/hyperf/blob/master/LICENSE
1111
*/
1212

1313
namespace Hyperf\HttpMessage\Base;

src/Cookie/Cookie.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* @link https://www.hyperf.io
88
* @document https://doc.hyperf.io
99
* @contact group@hyperf.io
10-
* @license https://github.com/hyperf-cloud/hyperf/blob/master/LICENSE
10+
* @license https://github.com/hyperf/hyperf/blob/master/LICENSE
1111
*/
1212

1313
namespace Hyperf\HttpMessage\Cookie;

src/Cookie/CookieJar.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* @link https://www.hyperf.io
88
* @document https://doc.hyperf.io
99
* @contact group@hyperf.io
10-
* @license https://github.com/hyperf-cloud/hyperf/blob/master/LICENSE
10+
* @license https://github.com/hyperf/hyperf/blob/master/LICENSE
1111
*/
1212

1313
namespace Hyperf\HttpMessage\Cookie;

src/Cookie/CookieJarInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* @link https://www.hyperf.io
88
* @document https://doc.hyperf.io
99
* @contact group@hyperf.io
10-
* @license https://github.com/hyperf-cloud/hyperf/blob/master/LICENSE
10+
* @license https://github.com/hyperf/hyperf/blob/master/LICENSE
1111
*/
1212

1313
namespace Hyperf\HttpMessage\Cookie;

0 commit comments

Comments
 (0)