From 45ead713d7fcfed5639ceb4d62923412cbe2f233 Mon Sep 17 00:00:00 2001 From: Fatih AYDIN Date: Tue, 30 Jul 2024 09:08:46 +0300 Subject: [PATCH 1/4] feat: Added laravel 11 support --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 1291412..7fe816d 100644 --- a/composer.json +++ b/composer.json @@ -20,7 +20,7 @@ "require": { "php": "^7.2|^7.3|^7.4|^8.0|^8.1|^8.2", "ext-imagick": "*", - "symfony/process": "^4.4|^5.0|^6.0" + "symfony/process": "^4.4|^5.0|^6.0|^7.0" }, "require-dev": { "phpunit/phpunit": "^8.5|^9.0||^10.0" From 7fb7a539ba8c3176e9e11a6bd732056a603b1002 Mon Sep 17 00:00:00 2001 From: Fatih AYDIN Date: Tue, 30 Jul 2024 09:08:59 +0300 Subject: [PATCH 2/4] feat: Added php 8.3 support --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 7fe816d..80cb5a0 100644 --- a/composer.json +++ b/composer.json @@ -18,7 +18,7 @@ } ], "require": { - "php": "^7.2|^7.3|^7.4|^8.0|^8.1|^8.2", + "php": "^7.2|^7.3|^7.4|^8.0|^8.1|^8.2|^8.3", "ext-imagick": "*", "symfony/process": "^4.4|^5.0|^6.0|^7.0" }, From 83b6db8e53a970af188830a8331c0474e8316d3e Mon Sep 17 00:00:00 2001 From: Fatih AYDIN Date: Tue, 30 Jul 2024 09:09:11 +0300 Subject: [PATCH 3/4] style: Fixed styling --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 80cb5a0..a1bb4fc 100644 --- a/composer.json +++ b/composer.json @@ -23,7 +23,7 @@ "symfony/process": "^4.4|^5.0|^6.0|^7.0" }, "require-dev": { - "phpunit/phpunit": "^8.5|^9.0||^10.0" + "phpunit/phpunit": "^8.5|^9.0|^10.0" }, "autoload": { "psr-4": { From 5a58b7a5ccbdbcf47e9ea7090fc2b6691eeefe6f Mon Sep 17 00:00:00 2001 From: Fatih AYDIN Date: Tue, 30 Jul 2024 09:09:40 +0300 Subject: [PATCH 4/4] ci: Added php 8.3 to matrix --- .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 6ad2561..dda3b8a 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -9,7 +9,7 @@ jobs: strategy: fail-fast: true matrix: - php: [7.2, 7.3, 7.4, 8.0, 8.1, 8.2] + php: [7.2, 7.3, 7.4, 8.0, 8.1, 8.2, 8.3] dependency-version: [prefer-lowest, prefer-stable] name: P${{ matrix.php }} - ${{ matrix.dependency-version }}