Skip to content

Commit ee93df8

Browse files
authored
Support for PHP 8.2 (#8)
1 parent 82a0ea9 commit ee93df8

File tree

2 files changed

+8
-12
lines changed

2 files changed

+8
-12
lines changed

.github/workflows/run-tests.yml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,24 +8,19 @@ jobs:
88
strategy:
99
fail-fast: true
1010
matrix:
11-
php: [8.1, 8.0, 7.4]
12-
laravel: [9.*, 8.*]
11+
php: [8.2, 8.1, 8.0]
12+
laravel: [9.*]
1313
db: [mysql, postgres, sqlite]
1414
dependency-version: [prefer-lowest, prefer-stable]
15-
exclude:
16-
- laravel: 9.*
17-
php: 7.4
1815
include:
1916
- laravel: 9.*
2017
testbench: 7.*
21-
- laravel: 8.*
22-
testbench: 6.*
2318

2419
name: P${{ matrix.php }} - L${{ matrix.laravel }} - DB ${{ matrix.db }} - ${{ matrix.dependency-version }}
2520

2621
services:
2722
mysql:
28-
image: mysql:5.7
23+
image: mysql:8.0
2924
env:
3025
MYSQL_ALLOW_EMPTY_PASSWORD: no
3126
MYSQL_USER: protone_media_db_test

composer.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,13 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^7.4|^8.0|^8.1",
20-
"illuminate/support": "^8.67|^9.0"
19+
"php": "^8.0|^8.1|^8.2",
20+
"illuminate/support": "^9.0",
21+
"nesbot/carbon": "^2.63"
2122
},
2223
"require-dev": {
2324
"mockery/mockery": "^1.3.3",
24-
"orchestra/testbench": "^6.23|7.0",
25+
"orchestra/testbench": "7.0",
2526
"phpunit/phpunit": "^9.4"
2627
},
2728
"autoload": {
@@ -43,4 +44,4 @@
4344
},
4445
"minimum-stability": "dev",
4546
"prefer-stable": true
46-
}
47+
}

0 commit comments

Comments
 (0)