From c408f79d8a13df968740db89f4438e36fd25aa9d Mon Sep 17 00:00:00 2001 From: DeveloperMarius Date: Tue, 23 Mar 2021 13:34:55 +0100 Subject: [PATCH] changed to PHP >= 3 & run test via composer test --- .github/workflows/ci.yml | 3 +-- composer.json | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 73fdb12..b7fa3a1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,6 @@ jobs: - windows-latest php-version: - 7.4 - - 8.1 phpunit-version: - 8.5.2 dependencies: @@ -69,7 +68,7 @@ jobs: # - name: Install dependencies # run: composer install --prefer-dist - name: Run tests with phpunit - run: phpunit tests + run: composer test # - name: Setup composer diff --git a/composer.json b/composer.json index a94ed5b..84520bb 100644 --- a/composer.json +++ b/composer.json @@ -27,7 +27,7 @@ } ], "require": { - "php": ">=7.1", + "php": ">=7.3", "ext-json": "*", "php-di/php-di": "^6.0" },