diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 57152e1..10571b8 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -2,24 +2,32 @@ name: run-tests on: push: - branches: [main] + branches: + - main pull_request: - branches: [main] + branches: + - main jobs: test: runs-on: ${{ matrix.os }} + strategy: fail-fast: true matrix: os: [ubuntu-latest, windows-latest] - php: [8.2, 8.1] - laravel: [10.*] + php: ['8.1', '8.2', '8.3', '8.4', '8.5'] + laravel: ['10.*', '13.*'] stability: [prefer-lowest, prefer-stable] include: - laravel: 10.* testbench: 8.* carbon: ^2.63 + exclude: + - laravel: 13.* + php: '8.1' + - laravel: 13.* + php: '8.2' name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }} diff --git a/composer.json b/composer.json index e572764..c4245a6 100644 --- a/composer.json +++ b/composer.json @@ -17,17 +17,17 @@ ], "require": { "php": "^8.2", - "filament/infolists":"^4.0", + "filament/infolists": "^4.0|^5.3", "spatie/laravel-package-tools": "^1.14.0", - "illuminate/contracts": "^10.0|^11.0|^12.0" + "illuminate/contracts": "^10.0|^11.0|^12.0|^13.0" }, "require-dev": { "laravel/pint": "^1.0", "nunomaduro/collision": "^7.9", - "orchestra/testbench": "^8.0", - "pestphp/pest": "^2.0", - "pestphp/pest-plugin-arch": "^2.0", - "pestphp/pest-plugin-laravel": "^2.0" + "orchestra/testbench": "^8.0|^11.0", + "pestphp/pest": "^2.0|^4.4", + "pestphp/pest-plugin-arch": "^2.0|^4.0", + "pestphp/pest-plugin-laravel": "^2.0|^4.1" }, "autoload": { "psr-4": { @@ -66,4 +66,4 @@ }, "minimum-stability": "dev", "prefer-stable": true -} \ No newline at end of file +}