Skip to content

Commit c686398

Browse files
committed
Merge branch 'master' of github.com:libvips/php-vips
2 parents 50cb534 + 3151535 commit c686398

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/ci.yml

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ jobs:
2121
uses: shivammathur/setup-php@v2
2222
with:
2323
php-version: ${{ matrix.php }}
24+
ini-values: zend.max_allowed_stack_size=-1
2425
tools: composer:v2
2526
coverage: none
2627

tests/StreamingTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public function sourceAndTargetProvider(): Generator
2727
'File' => fn() => Target::newToFile(tempnam(sys_get_temp_dir(), 'image')),
2828
'Memory' => fn() => Target::newToMemory(),
2929
'Resource' => fn() => new TargetResource(fopen('php://memory', 'wb+')),
30-
'Resource(Not Readable)' => fn() => new TargetResource(fopen('php://memory', 'wb'))
30+
'Resource (not readable)' => fn() => new TargetResource(fopen('php://memory', 'wb'))
3131
];
3232

3333
foreach ($sources as $sourceName => $source) {

0 commit comments

Comments
 (0)