From 17a273206abe252f195cfb5998f03b853d9e652f Mon Sep 17 00:00:00 2001 From: Beno!t POLASZEK Date: Sat, 23 Jan 2021 16:12:40 +0100 Subject: [PATCH] Support latest versions of robinvdvleuten/ulid --- .github/workflows/php.yml | 7 +++++++ composer.json | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index 2f76940..2c0bdb2 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -14,6 +14,9 @@ jobs: strategy: max-parallel: 10 matrix: + robinvdvleuten-ulid: + - '~4.0' + - '~5.0' php: - '7.3' - '7.4' @@ -44,6 +47,10 @@ jobs: run: | composer install --prefer-dist --no-interaction + - name: Install robinvdvleuten/ulid ${{ matrix.robinvdvleuten-ulid }} + run: | + composer req robinvdvleuten/ulid ${{ matrix.robinvdvleuten-ulid }} --prefer-dist --no-interaction + - name: Check code style run: ./vendor/bin/phpcs --standard=psr2 -n src/ diff --git a/composer.json b/composer.json index 1bfc4b9..19b1bf5 100644 --- a/composer.json +++ b/composer.json @@ -16,7 +16,7 @@ "license": "MIT", "require": { "php": ">=7.3", - "robinvdvleuten/ulid": "~2.0|~3.0" + "robinvdvleuten/ulid": "~4.0|~5.0" }, "require-dev": { "doctrine/orm": "^2.3",