diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 26b6a1a..a9b4452 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -17,7 +17,7 @@ jobs: strategy: matrix: - php: [8.0, 8.1] + php: [8.1] stability: [prefer-lowest, prefer-stable] # Steps represent a sequence of tasks that will be executed as part of the job diff --git a/README.md b/README.md index 46e86e3..a8c85cc 100644 --- a/README.md +++ b/README.md @@ -32,13 +32,14 @@ Invite Codes: 7.x | 5.x 8.x | 6.x 9.x | 7.x + 10.x | 8.x ## Installation You can pull in the package using [composer](https://getcomposer.org): ```bash -$ composer require "clarkeash/doorman=^7.0" +$ composer require "clarkeash/doorman=^8.0" ``` Next, migrate the database: diff --git a/composer.json b/composer.json index a1a5f7f..41368c1 100644 --- a/composer.json +++ b/composer.json @@ -9,8 +9,8 @@ } ], "require": { - "php": "^8.0", - "laravel/framework": "^9.0", + "php": "^8.1", + "laravel/framework": "^10.0", "ramsey/uuid": "^4.0" }, "autoload": { @@ -24,7 +24,7 @@ } }, "require-dev": { - "orchestra/testbench": "^7.0", + "orchestra/testbench": "^8.0", "phpunit/phpunit": "^9.3", "mockery/mockery": "^1.4" },