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

Commit e20a234

Browse files
Laravel 10.x Compatibility (#14)
Co-authored-by: Pascal Baljet <[email protected]>
1 parent bbf321b commit e20a234

File tree

2 files changed

+14
-12
lines changed

2 files changed

+14
-12
lines changed

.github/workflows/run-tests.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,12 @@ jobs:
88
strategy:
99
fail-fast: true
1010
matrix:
11-
php: [8.2, 8.1, 8.0]
12-
laravel: [9.*]
11+
php: [8.2, 8.1]
12+
laravel: [10.*, 9.*]
1313
dependency-version: [prefer-lowest, prefer-stable]
1414
include:
15+
- laravel: 10.*
16+
testbench: 8.*
1517
- laravel: 9.*
1618
testbench: 7.*
1719

composer.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -21,18 +21,18 @@
2121
}
2222
],
2323
"require": {
24-
"php": "^8.0 || ^8.1 || ^8.2",
25-
"illuminate/bus": "^9.0",
26-
"illuminate/queue": "^9.0",
27-
"illuminate/http": "^9.0",
28-
"illuminate/validation": "^9.0",
24+
"php": "^8.1 || ^8.2",
25+
"illuminate/bus": "^9.0 || ^10.0",
26+
"illuminate/queue": "^9.0 || ^10.0",
27+
"illuminate/http": "^9.0 || ^10.0",
28+
"illuminate/validation": "^9.0 || ^10.0",
2929
"theiconic/php-ga-measurement-protocol": "^2.7"
3030
},
3131
"require-dev": {
32-
"mockery/mockery": "^1.3.3",
33-
"nesbot/carbon": "^2.63",
34-
"orchestra/testbench": "^7.0",
35-
"phpunit/phpunit": "^9.4"
32+
"mockery/mockery": "^1.4.4",
33+
"nesbot/carbon": "^2.66",
34+
"orchestra/testbench": "^7.0 || ^8.0",
35+
"phpunit/phpunit": "^9.5"
3636
},
3737
"autoload": {
3838
"psr-4": {
@@ -60,4 +60,4 @@
6060
]
6161
}
6262
}
63-
}
63+
}

0 commit comments

Comments
 (0)