Skip to content
This repository was archived by the owner on Jan 29, 2024. It is now read-only.

Add support for laravel 10 and drop support for php7.4 #263

Merged
merged 3 commits into from
Feb 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,19 @@ jobs:

strategy:
matrix:
php: [8.1, 8.0, 7.4]
laravel: [9.*, 8.*]
php: [8.1, 8.0]
laravel: [10.*, 9.*]
dependency-version: [prefer-stable, prefer-lowest]
include:
- laravel: 10.*
testbench: 8.*
- laravel: 9.*
testbench: 7.*
- laravel: 8.*
testbench: 6.23
exclude:
- laravel: 9.*
php: 7.4
- laravel: 10.*
php: 8.0

name: CI - PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} - Testbench ${{ matrix.testbench }} (${{ matrix.dependency-version }})

Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to `mateusjunges/laravel-acl` will be documented in this file.

# [2023-02-15 v4.2.2](https://github.com/mateusjunges/laravel-acl/compare/v4.2.1...v4.2.2)
- Drop support for PHP 7.4 by @mateusjunges in [#263](https://github.com/mateusjunges/laravel-acl/pull/263)
- Add support for Laravel 10.x by @mateusjunges in [#263](https://github.com/mateusjunges/laravel-acl/pull/263)

# 4.2.1
- Fixes show permission command [#262](https://github.com/mateusjunges/laravel-acl/pull/262)

Expand Down
14 changes: 7 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@
},
"homepage": "https://github.com/mateusjunges/laravel-acl",
"require": {
"php": "^7.4|^8.0",
"illuminate/auth": "^8.0|^9.0",
"illuminate/container": "^8.0|^9.0",
"illuminate/support": "^8.0|^9.0",
"illuminate/database": "^8.0|^9.0",
"facade/ignition-contracts": "^1.0"
"php": "^8.0",
"illuminate/auth": "^9.0|^10.0",
"illuminate/container": "^9.0|^10.0",
"illuminate/support": "^9.0|^10.0",
"illuminate/database": "^9.0|^10.0",
"facade/ignition-contracts": "^1.0|^2.0"
},
"require-dev": {
"orchestra/testbench": "^6.0|^7.0",
"orchestra/testbench": "^7.0|^8.0",
"phpunit/phpunit": "^9.4",
"predis/predis": "^1.1",
"friendsofphp/php-cs-fixer": "^3.4"
Expand Down