From fdd58fb7f29b468085e3e40d80e7bfdb177c0d42 Mon Sep 17 00:00:00 2001 From: Andreas Schantl Date: Wed, 24 Jun 2026 14:27:29 +0200 Subject: [PATCH 1/3] Add support for L13 --- .gitignore | 1 + composer.json | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 8762117..2858c60 100755 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ docs vendor coverage .phpunit.cache +.idea diff --git a/composer.json b/composer.json index 908e30a..b403f6a 100755 --- a/composer.json +++ b/composer.json @@ -17,11 +17,11 @@ ], "require": { "php": "^8.2", - "illuminate/support": "^11.0|^12.0" + "illuminate/support": "^12.0|^13.0" }, "require-dev": { - "orchestra/testbench": "^9.0|^10.0", - "phpunit/phpunit": "^11.0" + "orchestra/testbench": "^10.0|^11.0", + "phpunit/phpunit": "^11.5" }, "autoload": { "psr-4": { From f52b8911690fa1bd712047032380c95c51f0e7bd Mon Sep 17 00:00:00 2001 From: Andreas Schantl Date: Wed, 24 Jun 2026 14:28:37 +0200 Subject: [PATCH 2/3] Update github action --- .github/workflows/php.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index de21e48..553770f 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -2,9 +2,9 @@ name: PHP Composer on: push: - branches: ["master"] + branches: ["main"] pull_request: - branches: ["master"] + branches: ["main"] permissions: contents: read @@ -31,11 +31,11 @@ jobs: - name: Install dependencies uses: php-actions/composer@v6 with: - php_version: "8.2" + php_version: "8.3" - name: Run tests uses: php-actions/composer@v6 with: command: test - php_version: "8.2" + php_version: "8.3" php_extensions: xdebug From 4ff03162f10f849e31f51f93cc407b01b558c72f Mon Sep 17 00:00:00 2001 From: Andreas Schantl Date: Wed, 24 Jun 2026 14:31:55 +0200 Subject: [PATCH 3/3] Workflow should run on push --- .github/workflows/php.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index 553770f..b092ddc 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -1,10 +1,6 @@ name: PHP Composer -on: - push: - branches: ["main"] - pull_request: - branches: ["main"] +on: [push] permissions: contents: read