From 895b1efca1d6e2013038688e1bd8d45ebfcbcfcf Mon Sep 17 00:00:00 2001 From: Giulio Troccoli-Allard Date: Wed, 15 Feb 2023 18:47:58 +0000 Subject: [PATCH 1/2] Updated required PHP and packages for version 2 --- .github/workflows/test.yml | 4 ++-- README.md | 4 ++-- composer.json | 10 +++++----- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 987b4ca..7872dc5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,8 +10,8 @@ jobs: strategy: fail-fast: true matrix: - php: [ 8.0, 8.1, 8.2 ] - laravel: [ ^8.0, ^9.0 ] + php: [ 8.1, 8.2 ] + laravel: [ ^10.0 ] name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} diff --git a/README.md b/README.md index 76d9e46..c8aa605 100644 --- a/README.md +++ b/README.md @@ -15,8 +15,8 @@ For a full list of available icons see [the SVG directory](resources/svg) or pre ## Requirements -- PHP 8.0 or higher -- Laravel 8.0 or 9.0 +- PHP 8.1 or higher +- Laravel 10.0 or higher ## Installation diff --git a/composer.json b/composer.json index feafcb7..1a248f9 100644 --- a/composer.json +++ b/composer.json @@ -10,13 +10,13 @@ } ], "require": { - "php": "^7.4|^8.0", - "blade-ui-kit/blade-icons": "^1.0", - "illuminate/support": "^8.0|^9.0" + "php": "^8.1", + "blade-ui-kit/blade-icons": "^1.5", + "illuminate/support": "^10.0" }, "require-dev": { - "phpunit/phpunit": "^9.0", - "orchestra/testbench": "^6.0" + "phpunit/phpunit": "^10.0", + "orchestra/testbench": "^8.0" }, "autoload": { "psr-4": { From 80020e5402b17bc50eea073d6407932f4b793256 Mon Sep 17 00:00:00 2001 From: Giulio Troccoli-Allard Date: Wed, 15 Feb 2023 18:52:06 +0000 Subject: [PATCH 2/2] fixup! Updated required PHP and packages for version 2 --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7872dc5..d944612 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -32,4 +32,4 @@ jobs: composer require "illuminate/contracts=${{ matrix.laravel }}" --prefer-dist --no-interaction --no-update - name: Execute tests - run: vendor/bin/phpunit --verbose + run: vendor/bin/phpunit