Skip to content

Commit

Permalink
Support Laravel 11
Browse files Browse the repository at this point in the history
  • Loading branch information
stevethomas committed Mar 11, 2024
1 parent b6f415f commit 08123fb
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 39 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [ 8.1, 8.2 ]
php: [ 8.1, 8.2, 8.3 ]

name: PHP ${{ matrix.php }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand Down
77 changes: 40 additions & 37 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,40 +1,43 @@
{
"name": "codinglabsau/laravel-roles",
"description": "Simple Laravel roles",
"license": "MIT",
"authors": [
{
"name": "Steve Thomas",
"email": "[email protected]",
"homepage": "https://codinglabs.com.au"
}
],
"homepage": "https://github.com/codinglabsau/laravel-roles",
"keywords": ["Laravel", "Roles"],
"require": {
"php" : "^8.1",
"illuminate/support": "^10.0"
},
"require-dev": {
"codinglabsau/php-styles": "dev-main",
"phpunit/phpunit": "^10.0",
"orchestra/testbench": "^8.0"
},
"autoload": {
"psr-4": {
"Codinglabs\\Roles\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Codinglabs\\Roles\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Codinglabs\\Roles\\RolesServiceProvider"
]
}
"name": "codinglabsau/laravel-roles",
"description": "Simple Laravel roles",
"license": "MIT",
"authors": [
{
"name": "Steve Thomas",
"email": "[email protected]",
"homepage": "https://codinglabs.com.au"
}
],
"homepage": "https://github.com/codinglabsau/laravel-roles",
"keywords": [
"Laravel",
"Roles"
],
"require": {
"php": "^8.1",
"illuminate/support": "^10.0|^11.0"
},
"require-dev": {
"codinglabsau/php-styles": "dev-main",
"phpunit/phpunit": "^10.0",
"orchestra/testbench": "^8.0"
},
"autoload": {
"psr-4": {
"Codinglabs\\Roles\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Codinglabs\\Roles\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Codinglabs\\Roles\\RolesServiceProvider"
]
}
}
}

0 comments on commit 08123fb

Please sign in to comment.