Skip to content

Commit

Permalink
Merge pull request #78 from SamuelNitsche/laravel-10-compatibility
Browse files Browse the repository at this point in the history
Laravel 10 compatibility
  • Loading branch information
clarkeash authored Feb 25, 2023
2 parents 24d5197 + e87b530 commit 4fe8dd9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
}
],
"require": {
"php": "^8.0",
"laravel/framework": "^9.0",
"php": "^8.1",
"laravel/framework": "^10.0",
"ramsey/uuid": "^4.0"
},
"autoload": {
Expand All @@ -24,7 +24,7 @@
}
},
"require-dev": {
"orchestra/testbench": "^7.0",
"orchestra/testbench": "^8.0",
"phpunit/phpunit": "^9.3",
"mockery/mockery": "^1.4"
},
Expand Down

0 comments on commit 4fe8dd9

Please sign in to comment.