diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 74c9c3e..d4f66bc 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -9,10 +9,12 @@ jobs: fail-fast: true matrix: os: [ubuntu-latest, windows-latest] - php: [8.0, 7.4] - laravel: [8.*, 7.*] + php: [8.0, 7.4, 8.1] + laravel: [8.*, 7.*, 10.*] dependency-version: [prefer-lowest, prefer-stable] include: + - laravel: 10.* + testbench: 8.* - laravel: 8.* testbench: 6.* - laravel: 7.* diff --git a/composer.json b/composer.json index 01f3d85..59d0299 100644 --- a/composer.json +++ b/composer.json @@ -2,7 +2,14 @@ "name": "macsidigital/laravel-zoom", "description": "Laravel Zoom package", "homepage": "https://github.com/MacsiDigital/laravel-zoom", - "keywords": ["macsidigital", "laravel-zoom", "zoom", "laravel", "api", "client"], + "keywords": [ + "macsidigital", + "laravel-zoom", + "zoom", + "laravel", + "api", + "client" + ], "license": "MIT", "type": "library", "authors": [ @@ -14,12 +21,12 @@ ], "require": { "php": "^8.0|^8.1", - "illuminate/support": "^8.0|^9.0", + "illuminate/support": "^8.0|^9.0|^10.0", "macsidigital/laravel-api-client": "^4.0.2" }, "require-dev": { - "friendsofphp/php-cs-fixer": "^2.16", - "orchestra/testbench": "^6.0|^7.0", + "friendsofphp/php-cs-fixer": "^2.16|^3.14", + "orchestra/testbench": "^6.0|^7.0|^8.0", "phpunit/phpunit": "^9.0" }, "autoload": { @@ -50,6 +57,6 @@ } } }, - "minimum-stability" : "dev", + "minimum-stability": "dev", "prefer-stable": true }