From 2d1af6ca097666e66ad151c78bd285a74b41a6ed Mon Sep 17 00:00:00 2001 From: Cesar Date: Fri, 6 Jan 2023 11:13:24 +0100 Subject: [PATCH 1/4] remove support to Laravel 6 --- .github/workflows/tests.yml | 8 ++------ composer.json | 14 +++++++------- 2 files changed, 9 insertions(+), 13 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 0446915..1afbd88 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -12,12 +12,10 @@ jobs: strategy: fail-fast: false matrix: - php: [7.4, 8.0, 8.1] - laravel: [9.*, 8.*, 6.*] + php: [8.1, 8.0, 7.4] + laravel: [9.*, 8.*] dependency-version: [prefer-lowest, prefer-stable] exclude: - - php: 8.1 - laravel: 6.* - php: 7.4 laravel: 9.* include: @@ -25,8 +23,6 @@ jobs: testbench: 7.* - laravel: 8.* testbench: 6.* - - laravel: 6.* - testbench: 4.* name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} diff --git a/composer.json b/composer.json index 2f2a893..db9b538 100644 --- a/composer.json +++ b/composer.json @@ -19,16 +19,16 @@ "license": "MIT", "require": { "php" : "^7.4 | ^8.0", - "illuminate/config": "^6.20|^8.76|^9.0", - "illuminate/console": "^6.20|^8.76|^9.0", - "illuminate/log": "^6.20|^8.76|^9.0", - "illuminate/support": "^6.20|^8.76|^9.0", + "illuminate/config": "^8.76|^9.0", + "illuminate/console": "^8.76|^9.0", + "illuminate/log": "^8.76|^9.0", + "illuminate/support": "^8.76|^9.0", "monolog/monolog": "^2.0", - "cesargb/php-log-rotation": "^2.4" + "cesargb/php-log-rotation": "^2.6" }, "require-dev": { - "orchestra/testbench": "^4.18|^6.20|^7.0", - "phpunit/phpunit": "^9.4" + "orchestra/testbench": "^6.20|^7.0", + "phpunit/phpunit": "^9.5" }, "autoload": { "psr-4": { From 8aa9edc808853cda917ac80ff679a4f72ad714d1 Mon Sep 17 00:00:00 2001 From: Cesar Date: Fri, 6 Jan 2023 11:17:01 +0100 Subject: [PATCH 2/4] remove support to Laravel 8 and php 74 --- .github/workflows/tests.yml | 9 ++------- composer.json | 12 ++++++------ 2 files changed, 8 insertions(+), 13 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 1afbd88..a82875f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -12,17 +12,12 @@ jobs: strategy: fail-fast: false matrix: - php: [8.1, 8.0, 7.4] - laravel: [9.*, 8.*] + php: [8.1, 8.0] + laravel: [9.*] dependency-version: [prefer-lowest, prefer-stable] - exclude: - - php: 7.4 - laravel: 9.* include: - laravel: 9.* testbench: 7.* - - laravel: 8.* - testbench: 6.* name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} diff --git a/composer.json b/composer.json index db9b538..999a104 100644 --- a/composer.json +++ b/composer.json @@ -18,16 +18,16 @@ ], "license": "MIT", "require": { - "php" : "^7.4 | ^8.0", - "illuminate/config": "^8.76|^9.0", - "illuminate/console": "^8.76|^9.0", - "illuminate/log": "^8.76|^9.0", - "illuminate/support": "^8.76|^9.0", + "php" : "^8.0", + "illuminate/config": "^9.0", + "illuminate/console": "^9.0", + "illuminate/log": "^9.0", + "illuminate/support": "^9.0", "monolog/monolog": "^2.0", "cesargb/php-log-rotation": "^2.6" }, "require-dev": { - "orchestra/testbench": "^6.20|^7.0", + "orchestra/testbench": "^7.0", "phpunit/phpunit": "^9.5" }, "autoload": { From d92f215a0325b2894ccd7ded759146b161e8515d Mon Sep 17 00:00:00 2001 From: Cesar Date: Fri, 6 Jan 2023 11:18:01 +0100 Subject: [PATCH 3/4] clean dependencies --- .github/workflows/tests.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index a82875f..4d03246 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -29,7 +29,6 @@ jobs: uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php }} - extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, exif coverage: none - name: Install dependencies From 089af05304d88642c7882665d57dd32d0451c3c9 Mon Sep 17 00:00:00 2001 From: Cesar Date: Fri, 6 Jan 2023 11:18:23 +0100 Subject: [PATCH 4/4] add support to php82 --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 4d03246..25d32f5 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -12,7 +12,7 @@ jobs: strategy: fail-fast: false matrix: - php: [8.1, 8.0] + php: [8.2, 8.1, 8.0] laravel: [9.*] dependency-version: [prefer-lowest, prefer-stable] include: