File tree 5 files changed +22
-24
lines changed
5 files changed +22
-24
lines changed Original file line number Diff line number Diff line change 28
28
},
29
29
"require-dev" : {
30
30
"phpunit/phpunit" : " ^9.6|^10.0" ,
31
- "psr/http-message" : " ^1.0" ,
32
- "laminas/laminas-diactoros" : " ^2.17" ,
33
- "vimeo/psalm" : " ^5.22"
31
+ "psr/http-message" : " ^1.0|^2.0" ,
32
+ "httpsoft/http-message" : " ^1.1" ,
33
+ "phpstan/extension-installer" : " ^1.4" ,
34
+ "phpstan/phpstan" : " ^1.11" ,
35
+ "phpstan/phpstan-strict-rules" : " ^1.6"
34
36
},
35
37
"autoload-dev" : {
36
38
"psr-4" : {
Original file line number Diff line number Diff line change
1
+ includes :
2
+ - phar://phpstan.phar/conf/bleedingEdge.neon
3
+ parameters :
4
+ level : 1
5
+ strictRules :
6
+ allRules : true
7
+ fileExtensions :
8
+ - php
9
+ paths :
10
+ - src
11
+ tmpDir : vendor/.cache.phpstan
12
+ reportUnmatchedIgnoredErrors : false
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -154,10 +154,10 @@ public function __serialize(): array
154
154
}
155
155
156
156
return [
157
- 'uri ' => $ meta ['uri ' ],
158
- 'mode ' => $ meta ['mode ' ],
159
- 'seek ' => $ this ->offset ,
160
- 'algo ' => $ this ->algo ,
157
+ 'uri ' => $ meta ['uri ' ],
158
+ 'mode ' => $ meta ['mode ' ],
159
+ 'seek ' => $ this ->offset ,
160
+ 'algo ' => $ this ->algo ,
161
161
'chunk ' => $ this ->chunkSize ,
162
162
];
163
163
}
Original file line number Diff line number Diff line change 4
4
5
5
namespace Phplrt \Source \Tests \Unit ;
6
6
7
- use Laminas \ Diactoros \StreamFactory ;
7
+ use HttpSoft \ Message \StreamFactory ;
8
8
use Phplrt \Source \File ;
9
9
use Phplrt \Source \Tests \TestCase as UnitTestCase ;
10
10
You can’t perform that action at this time.
0 commit comments