Skip to content

Commit 17126f0

Browse files
authored
Merge pull request #375 from asgrim/update-for-8-5-api-update
Update test ext for PHP 8.5 API update
2 parents 49acca4 + 2344c04 commit 17126f0

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

features/install-extensions.feature

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ Feature: Extensions can be installed with PIE
1010

1111
Examples:
1212
| constraint | version |
13-
| 2.0.3 | 2.0.3 |
14-
| ^2.0 | 2.0.3 |
13+
| 2.0.5 | 2.0.5 |
14+
| ^2.0 | 2.0.5 |
1515

1616
@non-windows
1717
Example: An in-development version can be downloaded on non-Windows systems

test/integration/Command/DownloadCommandTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
#[CoversClass(DownloadCommand::class)]
2525
class DownloadCommandTest extends TestCase
2626
{
27-
private const TEST_PACKAGE_LATEST = '2.0.3';
27+
private const TEST_PACKAGE_LATEST = '2.0.5';
2828
private const TEST_PACKAGE = 'asgrim/example-pie-extension';
2929

3030
private CommandTester $commandTester;

test/integration/DependencyResolver/ResolveDependencyWithComposerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
#[CoversClass(ResolveDependencyWithComposer::class)]
2727
final class ResolveDependencyWithComposerTest extends TestCase
2828
{
29-
private const TEST_PACKAGE_LATEST = '2.0.3';
29+
private const TEST_PACKAGE_LATEST = '2.0.5';
3030
private const DOWNLOAD_URL_ANY = 'https://api.github.com/repos/asgrim/example-pie-extension/zipball/%s';
3131
private const DOWNLOAD_URL_1_0_1_ALPHA_3 = 'https://api.github.com/repos/asgrim/example-pie-extension/zipball/115f8f8e01ee098a18ec2f47af4852be51ebece7';
3232
private const DOWNLOAD_URL_1_0_1 = 'https://api.github.com/repos/asgrim/example-pie-extension/zipball/769f906413d6d1e12152f6d34134cbcd347ca253';

0 commit comments

Comments
 (0)