From a193627e2fa80729a7aa8690c1663cada4613f9a Mon Sep 17 00:00:00 2001 From: Mohammed Elhaouari Date: Sun, 12 Jul 2026 17:59:22 +0100 Subject: [PATCH 1/2] Add laravel 13 support --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index cd45a80..744e0fc 100644 --- a/composer.json +++ b/composer.json @@ -24,7 +24,7 @@ "php": "^8.3 || ^8.4", "ext-json": "*", "phpjuice/wati-http-client": "^1.0", - "illuminate/support": "^10.0|^11.0|^12.0" + "illuminate/support": "^10.0|^11.0|^12.0|^13.0" }, "require-dev": { "laravel/pint": "^1.27", From 13ed6135facb51d3f1e4f765f6c687ffb7c0f235 Mon Sep 17 00:00:00 2001 From: Mohammed Elhaouari Date: Sun, 12 Jul 2026 18:11:03 +0100 Subject: [PATCH 2/2] Add PHP 8.5 support --- .github/workflows/php.yml | 2 +- README.md | 2 +- composer.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index 2f587b4..0335c73 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -15,7 +15,7 @@ jobs: strategy: fail-fast: true matrix: - php: [ '8.3', '8.4' ] + php: [ '8.3', '8.4', '8.5' ] name: PHP ${{ matrix.php }} - Tests diff --git a/README.md b/README.md index 3f5bbb8..b25c713 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Wati SDK [![CI](https://github.com/phpjuice/wati-sdk/actions/workflows/php.yml/badge.svg)](https://github.com/phpjuice/wati-sdk/actions/workflows/php.yml) -[![PHP Version](https://img.shields.io/badge/PHP-8.3%20%7C%208.4-777BB4?logo=php&logoColor=white)](https://php.net) +[![PHP Version](https://img.shields.io/badge/PHP-8.3%20%7C%208.4%20%7C%208.5-777BB4?logo=php&logoColor=white)](https://php.net) [![Latest Stable Version](http://poser.pugx.org/phpjuice/wati-sdk/v)](https://packagist.org/packages/phpjuice/wati-sdk) [![Total Downloads](http://poser.pugx.org/phpjuice/wati-sdk/downloads)](https://packagist.org/packages/phpjuice/wati-sdk) [![License](http://poser.pugx.org/phpjuice/wati-sdk/license)](https://packagist.org/packages/phpjuice/wati-sdk) diff --git a/composer.json b/composer.json index 744e0fc..d33d562 100644 --- a/composer.json +++ b/composer.json @@ -21,7 +21,7 @@ } ], "require": { - "php": "^8.3 || ^8.4", + "php": "^8.3 || ^8.4 || ^8.5", "ext-json": "*", "phpjuice/wati-http-client": "^1.0", "illuminate/support": "^10.0|^11.0|^12.0|^13.0"