Skip to content

Commit

Permalink
Merge pull request #176 from rafaelqm/l9-support
Browse files Browse the repository at this point in the history
Adding support to Laravel 9
  • Loading branch information
jeremykenedy authored Feb 17, 2022
2 parents b12a64d + 928af6c commit f16effc
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 12 deletions.
5 changes: 2 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
language: php
sudo: required
dist: trusty
dist: focal
group: edge

php:
- 7.3
- 7.4
- 8.1

sudo: false

Expand Down
24 changes: 15 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jeremykenedy/laravel-roles",
"description": "A Powerful package for handling roles and permissions in Laravel. Supports Laravel 5.3, 5.4, 5.5, 5.6, 5.7, 5.8, 6.0, 7.0, and 8.0+.",
"description": "A Powerful package for handling roles and permissions in Laravel. Supports Laravel 5.3, 5.4, 5.5, 5.6, 5.7, 5.8, 6.0, 7.0, 8.0 and 9.0.",
"keywords": [
"laravel-roles",
"laravel-permissions",
Expand All @@ -24,17 +24,23 @@
}
],
"require": {
"php": "^7.2|^8.0",
"laravel/framework": "5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*|6.*|7.*|8.*",
"eklundkristoffer/seedster": "^4.0",
"laravel/helpers": "^1.3"
"php": "^8.0.2|^8.1",
"laravel/framework": "5.3.*|5.4.*|5.5.*|5.6.*|5.7.*|5.8.*|6.*|7.*|8.*|9.*",
"eklundkristoffer/seedster": "dev-l9-support",
"laravel/helpers": "^1.5"
},
"require-dev": {
"orchestra/testbench": "^6.0",
"laravel/tinker": "^2.4",
"illuminate/support": "^8.5",
"laravel/laravel": "^8.0"
"orchestra/testbench": "^7.0",
"laravel/tinker": "^2.7",
"illuminate/support": "^9.0",
"laravel/laravel": "^9.0"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/rafaelqm/seedster.git"
}
],
"autoload": {
"psr-4": {
"jeremykenedy\\LaravelRoles\\": "src/"
Expand Down

0 comments on commit f16effc

Please sign in to comment.