Skip to content

Commit 459dcdf

Browse files
committed
Returned PHP8 support
1 parent 6144b6b commit 459dcdf

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/tests.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,18 @@ jobs:
1212
fail-fast: true
1313
matrix:
1414
os: [ubuntu-latest]
15-
php: [8.1, 8.2, 8.3]
15+
php: [8.0, 8.1, 8.2, 8.3]
1616
laravel: ['9.*', '10.*', '11.*']
1717
dependency-version: [prefer-lowest, prefer-stable]
1818
exclude:
1919
- laravel: 9.*
2020
php: 8.2
2121
- laravel: 9.*
2222
php: 8.3
23+
- laravel: 10.*
24+
php: 8.0
25+
- laravel: 11.*
26+
php: 8.0
2327
- laravel: 11.*
2428
php: 8.1
2529
include:

CHANGELOG.md

-4
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,6 @@ All notable changes to `cybercog/laravel-ban` will be documented in this file.
88

99
- ([#95]) Added Laravel 11 support
1010

11-
### Removed
12-
13-
- Dropped PHP 8 support
14-
1511
## [4.8.0] - 2023-02-24
1612

1713
### Added

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,15 @@
3535
"docs": "https://github.com/cybercog/laravel-ban/wiki"
3636
},
3737
"require": {
38-
"php": "^8.1",
38+
"php": "^8.0",
3939
"illuminate/database": "^9.0|^10.0|^11.0",
4040
"illuminate/events": "^9.0|^10.0|^11.0",
4141
"illuminate/support": "^9.0|^10.0|^11.0"
4242
},
4343
"require-dev": {
4444
"mockery/mockery": "^1.0",
4545
"orchestra/testbench": "^7.0|^8.0|^9.0",
46-
"phpunit/phpunit": "^10.5"
46+
"phpunit/phpunit": "^9.6|^10.5"
4747
},
4848
"autoload": {
4949
"psr-4": {

phpunit.xml.dist

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@
1919
<server name="DB_CONNECTION" value="sqlite"/>
2020
<server name="DB_DATABASE" value=":memory:"/>
2121
</php>
22-
</phpunit>
22+
</phpunit>

0 commit comments

Comments
 (0)