Skip to content

Commit

Permalink
Latest example pie ext version 2.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
asgrim committed Oct 9, 2024
1 parent 1a64887 commit 763f48e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions features/install-extensions.feature
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ Feature: Extensions can be installed with Behat

Examples:
| constraint | version |
| 2.0.1 | 2.0.1 |
| ^2.0 | 2.0.1 |
| 2.0.2 | 2.0.2 |
| ^2.0 | 2.0.2 |

@non-windows
Example: An in-development version can be downloaded on non-Windows systems
Expand Down
6 changes: 3 additions & 3 deletions test/integration/Command/DownloadCommandTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ public function setUp(): void
public static function validVersionsList(): array
{
$versionsAndExpected = [
[self::TEST_PACKAGE, self::TEST_PACKAGE . ':2.0.1'],
[self::TEST_PACKAGE . ':*', self::TEST_PACKAGE . ':2.0.1'],
[self::TEST_PACKAGE . ':^2.0', self::TEST_PACKAGE . ':2.0.1'],
[self::TEST_PACKAGE, self::TEST_PACKAGE . ':2.0.2'],
[self::TEST_PACKAGE . ':*', self::TEST_PACKAGE . ':2.0.2'],
[self::TEST_PACKAGE . ':^2.0', self::TEST_PACKAGE . ':2.0.2'],
];

if (PHP_VERSION_ID >= 80300 && PHP_VERSION_ID < 80400) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ final class ResolveDependencyWithComposerTest extends TestCase
public static function validVersionsList(): array
{
$versionsAndExpected = [
[null, '2.0.1', self::DOWNLOAD_URL_ANY],
['*', '2.0.1', self::DOWNLOAD_URL_ANY],
[null, '2.0.2', self::DOWNLOAD_URL_ANY],
['*', '2.0.2', self::DOWNLOAD_URL_ANY],
['dev-main', 'dev-main', self::DOWNLOAD_URL_ANY],
['dev-main#769f906413d6d1e12152f6d34134cbcd347ca253', 'dev-main', self::DOWNLOAD_URL_1_0_1],
];
Expand Down

0 comments on commit 763f48e

Please sign in to comment.