Skip to content

Commit d9218bf

Browse files
Laravel 10.x Compatibility (#392)
* Bump dependencies for Laravel 10 * Update GitHub Actions for Laravel 10 * update matrix --------- Co-authored-by: Chris Gmyr <[email protected]>
1 parent 3199109 commit d9218bf

File tree

4 files changed

+38
-12
lines changed

4 files changed

+38
-12
lines changed

.github/workflows/run-tests-mysql.yml

+7-2
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,18 @@ jobs:
2828
fail-fast: false
2929
matrix:
3030
operating-system: [ubuntu-latest]
31-
php-versions: [ '8.1','8.0' ]
31+
php-versions: [ '8.1', '8.0' ]
3232
dependency-stability: [ prefer-stable ]
3333

34-
laravel: [ '9.*' ]
34+
laravel: [ '10.*', '9.*' ]
3535
include:
36+
- laravel: 10.*
37+
testbench: 8.*
3638
- laravel: 9.*
3739
testbench: 7.*
40+
exclude:
41+
- laravel: 10.*
42+
php-versions: 8.0
3843

3944
name: P${{ matrix.php-versions }} - L${{ matrix.laravel }} - ${{ matrix.dependency-stability }} - ${{ matrix.operating-system}}
4045

.github/workflows/run-tests-postgres.yml

+7-2
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,18 @@ jobs:
2929
fail-fast: false
3030
matrix:
3131
operating-system: [ubuntu-latest]
32-
php-versions: [ '8.1','8.0' ]
32+
php-versions: [ '8.1', '8.0' ]
3333
dependency-stability: [ prefer-stable ]
3434

35-
laravel: [ '9.*' ]
35+
laravel: [ '10.*', '9.*']
3636
include:
37+
- laravel: 10.*
38+
testbench: 8.*
3739
- laravel: 9.*
3840
testbench: 7.*
41+
exclude:
42+
- laravel: 10.*
43+
php-versions: 8.0
3944

4045
name: P${{ matrix.php-versions }} - L${{ matrix.laravel }} - ${{ matrix.dependency-stability }} - ${{ matrix.operating-system}}
4146

.github/workflows/run-tests.yml

+13-2
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,14 @@ jobs:
1010
fail-fast: false
1111
matrix:
1212
operating-system: [ubuntu-latest]
13-
php-versions: [ '8.1','8.0','7.4','7.3','7.2' ]
13+
php-versions: [ '8.1', '8.0', '7.4', '7.3', '7.2' ]
1414
dependency-stability: [ prefer-stable ]
15-
laravel: [ '9.*','8.*','7.*','6.*' ]
15+
laravel: [ '10.*', '9.*', '8.*', '7.*', '6.*' ]
1616

1717
include:
18+
- laravel: 10.*
19+
testbench: 8.*
20+
dbal: ^3.1.2
1821
- laravel: 9.*
1922
testbench: 7.*
2023
dbal: ^3.1.2
@@ -28,6 +31,14 @@ jobs:
2831
testbench: 4.*
2932
dbal: ^2.6
3033
exclude:
34+
- laravel: 10.*
35+
php-versions: 8.0
36+
- laravel: 10.*
37+
php-versions: 7.4
38+
- laravel: 10.*
39+
php-versions: 7.3
40+
- laravel: 10.*
41+
php-versions: 7.2
3142
- laravel: 9.*
3243
php-versions: 7.2
3344
- laravel: 9.*

composer.json

+11-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
{
22
"name": "cmgmyr/messenger",
33
"description": "Simple user messaging tool for Laravel",
4-
"keywords": ["laravel", "messenger", "messaging", "user messaging"],
4+
"keywords": [
5+
"laravel",
6+
"messenger",
7+
"messaging",
8+
"user messaging"
9+
],
510
"license": "MIT",
611
"authors": [
712
{
@@ -13,15 +18,15 @@
1318
],
1419
"require": {
1520
"php": "^7.2|^8.0",
16-
"illuminate/config": "^5.5|^6.0|^7.0|^8.0|^9.0",
17-
"illuminate/database": "^5.5|^6.0|^7.0|^8.0|^9.0",
18-
"illuminate/support": "^5.5|^6.0|^7.0|^8.0|^9.0"
21+
"illuminate/config": "^5.5|^6.0|^7.0|^8.0|^9.0|^10.0",
22+
"illuminate/database": "^5.5|^6.0|^7.0|^8.0|^9.0|^10.0",
23+
"illuminate/support": "^5.5|^6.0|^7.0|^8.0|^9.0|^10.0"
1924
},
2025
"require-dev": {
2126
"doctrine/dbal": "^3.1.2|^2.13.3",
22-
"fakerphp/faker": "^1.16",
27+
"fakerphp/faker": "^1.16|^1.9.1",
2328
"friendsofphp/php-cs-fixer": "^3.2|^2.18",
24-
"orchestra/testbench": "^3.0|^4.0|^5.0|^6.0|^7.0",
29+
"orchestra/testbench": "^3.0|^4.0|^5.0|^6.0|^7.0|^8.0",
2530
"phpunit/phpunit": "^8.0|^9.3.3"
2631
},
2732
"autoload": {

0 commit comments

Comments
 (0)