Skip to content

Commit

Permalink
Merge branch 'master' of github.com:libvips/php-vips
Browse files Browse the repository at this point in the history
  • Loading branch information
jcupitt committed Feb 14, 2024
2 parents 50cb534 + 3151535 commit c686398
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ jobs:
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
ini-values: zend.max_allowed_stack_size=-1
tools: composer:v2
coverage: none

Expand Down
2 changes: 1 addition & 1 deletion tests/StreamingTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public function sourceAndTargetProvider(): Generator
'File' => fn() => Target::newToFile(tempnam(sys_get_temp_dir(), 'image')),
'Memory' => fn() => Target::newToMemory(),
'Resource' => fn() => new TargetResource(fopen('php://memory', 'wb+')),
'Resource(Not Readable)' => fn() => new TargetResource(fopen('php://memory', 'wb'))
'Resource (not readable)' => fn() => new TargetResource(fopen('php://memory', 'wb'))
];

foreach ($sources as $sourceName => $source) {
Expand Down

0 comments on commit c686398

Please sign in to comment.