Skip to content

Commit 353ccc4

Browse files
authored
Merge pull request #8 from worksome/feature/laravel-11
feat: add support for Laravel 11
2 parents 89ec35c + 127285a commit 353ccc4

File tree

3 files changed

+13
-18
lines changed

3 files changed

+13
-18
lines changed

.github/workflows/tests.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,14 @@ jobs:
1515
fail-fast: true
1616
matrix:
1717
os: [ubuntu-latest]
18-
php: [8.2]
19-
laravel: [10.*]
18+
php: [8.2, 8.3]
19+
laravel: [10.*, 11.*]
2020
stability: [prefer-lowest, prefer-stable]
2121
include:
2222
- laravel: 10.*
2323
testbench: 8.*
24+
- laravel: 11.*
25+
testbench: 9.*
2426

2527
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
2628

CHANGELOG.md

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

composer.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,19 @@
1717
],
1818
"require": {
1919
"php": "^8.2",
20-
"illuminate/contracts": "^10.0",
21-
"open-telemetry/api": "^1.0",
22-
"open-telemetry/sdk": "^1.0",
23-
"open-telemetry/exporter-otlp": "^1.0",
20+
"illuminate/contracts": "^10.0 || ^11.0",
21+
"open-telemetry/api": "^1.0.3",
22+
"open-telemetry/sdk": "^1.0.8",
23+
"open-telemetry/exporter-otlp": "^1.0.3",
2424
"php-http/guzzle7-adapter": "^1.0"
2525
},
2626
"require-dev": {
27-
"nunomaduro/collision": "^7.10",
28-
"nunomaduro/larastan": "^2.6.4",
29-
"orchestra/testbench": "^8.15",
30-
"pestphp/pest": "^2.24.3",
27+
"nunomaduro/collision": "^7.10 || ^8.1",
28+
"larastan/larastan": "^2.8",
29+
"orchestra/testbench": "^8.15 || ^9.0",
30+
"pestphp/pest": "^2.33",
3131
"pestphp/pest-plugin-laravel": "^2.2",
32-
"worksome/coding-style": "^2.6.1"
32+
"worksome/coding-style": "^2.8"
3333
},
3434
"autoload": {
3535
"psr-4": {

0 commit comments

Comments
 (0)