File tree 3 files changed +12
-7
lines changed
3 files changed +12
-7
lines changed Original file line number Diff line number Diff line change 14
14
strategy :
15
15
fail-fast : false
16
16
matrix :
17
- php : [ 8.0, 8.1, 8.2, 8.3 ]
17
+ php : [ ' 8.0', ' 8.1', ' 8.2', ' 8.3' ]
18
18
laravel : [ '8.*', '9.*', '10.*', '11.*' ]
19
19
guzzle : [ 6.*, 7.* ]
20
20
dependency-version : [ prefer-lowest, prefer-stable ]
75
75
- name : Install dependencies
76
76
run : |
77
77
composer self-update ${{ matrix.composer-version }}
78
- composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" "guzzlehttp/guzzle:${{ matrix.guzzle }}" --no-interaction --no-update
78
+ composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" "guzzlehttp/guzzle:${{ matrix.guzzle }}" --no-interaction --no-update --dev
79
79
composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction
80
80
81
81
- name : Execute tests
Original file line number Diff line number Diff line change 10
10
}
11
11
],
12
12
"require" : {
13
- "php" : " ^8.0 " ,
13
+ "php" : " ^8.1 " ,
14
14
"illuminate/filesystem" : " ^8|^9|^10|^11" ,
15
15
"illuminate/console" : " ^8|^9|^10|^11" ,
16
- "maennchen/zipstream-php" : " ^2.1|^3.1" ,
16
+ "illuminate/support" : " ^8|^9|^10|^11" ,
17
+ "maennchen/zipstream-php" : " ^3.1" ,
17
18
"guzzlehttp/guzzle" : " ^6.3|^7.2" ,
18
- "aws/aws-sdk-php" : " ^3.216.1" ,
19
- "illuminate/support" : " ^10.0|^11.0"
19
+ "aws/aws-sdk-php" : " ^3.216.1"
20
20
},
21
21
"require-dev" : {
22
22
"orchestra/testbench" : " ^5|^6|^7|^8|^9" ,
Original file line number Diff line number Diff line change @@ -336,7 +336,12 @@ public function upload()
336
336
// a writeable local disk!
337
337
$ stream = fopen ($ path , 'w ' );
338
338
339
- $ zip = new ZipStream (enableZip64: false , outputStream: $ stream , outputName: null );
339
+ $ zip = new ZipStream (
340
+ outputStream: $ stream ,
341
+ enableZip64: false ,
342
+ sendHttpHeaders: false ,
343
+ outputName: null
344
+ );
340
345
341
346
// Set the time to now so that hashes are
342
347
// stable during testing.
You can’t perform that action at this time.
0 commit comments