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

Commit 462eae5

Browse files
authored
Merge pull request #205 from mateusjunges/add-support-for-php-v8
Add support for php v8
2 parents 439df9f + 5bec257 commit 462eae5

File tree

4 files changed

+11
-38
lines changed

4 files changed

+11
-38
lines changed

.github/workflows/run-tests.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ jobs:
88

99
strategy:
1010
matrix:
11-
php: [7.3, 7.4]
12-
laravel: [8.*, 7.*, 6.*, 5.8.*]
11+
php: [7.3, 7.4, 8.0]
12+
laravel: [8.*, 7.*, 6.*]
1313
dependency-version: [prefer-stable, prefer-lowest]
1414
include:
1515
- laravel: 8.*
@@ -18,8 +18,6 @@ jobs:
1818
testbench: 5.*
1919
- laravel: 6.*
2020
testbench: 4.*
21-
- laravel: 5.8.*
22-
testbench: 3.8.*
2321

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

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

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

5+
# 2.6.0
6+
- Add support for PHP v8.0
7+
- Drop support for Laravel v5.8.x
8+
59
# 2.5.1
610
- Fix user model namespace for laravel v8.x
711

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@
1616
},
1717
"homepage": "https://github.com/mateusjunges/laravel-acl",
1818
"require": {
19-
"php": "^7.3",
20-
"illuminate/auth": "^5.8|^6.0|^7.0|^8.0",
21-
"illuminate/support": "^5.8|^6.0|^7.0|^8.0",
22-
"illuminate/database": "^5.8|^6.0|^7.0|^8.0",
19+
"php": "^7.3||^8.0",
20+
"illuminate/auth": "^6.0|^7.0|^8.0",
21+
"illuminate/support": "^6.0|^7.0|^8.0",
22+
"illuminate/database": "^6.0|^7.0|^8.0",
2323
"facade/ignition-contracts": "^1.0"
2424
},
2525
"require-dev": {
26-
"orchestra/testbench": "^3.8|^4.0|^5.0|^6.0",
26+
"orchestra/testbench": "^4.0|^5.0|^6.0",
2727
"phpunit/phpunit": "^8.0|^9.0",
2828
"predis/predis": "^1.1",
2929
"facade/ignition": "^1.4|^2.3.6"

tests/Commands/InstallCommandTest.php

Lines changed: 0 additions & 29 deletions
This file was deleted.

0 commit comments

Comments
 (0)