Skip to content

Commit b2d6b55

Browse files
authored
Merge pull request #102 from laravel-shift/l10-compatibility
Laravel 10.x Compatibility
2 parents cdd8624 + e86b2e6 commit b2d6b55

File tree

4 files changed

+26
-17
lines changed

4 files changed

+26
-17
lines changed

.github/workflows/run-tests.yml

Lines changed: 17 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -13,23 +13,28 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
php:
16-
- '8.1'
17-
- '8.0'
18-
- '7.4'
19-
- '7.3'
16+
- 7.4
17+
- 7.3
2018
laravel:
21-
- '9.*'
22-
- '8.*'
23-
- '7.*'
19+
- 8.*
20+
- 7.*
2421
deps:
2522
- lowest
2623
- latest
24+
include:
25+
- {php: '8.2', laravel: '10.*'}
26+
- {php: '8.1', laravel: '10.*'}
27+
28+
- {php: '8.2', laravel: '9.*'}
29+
- {php: '8.1', laravel: '9.*'}
30+
- {php: '8.0', laravel: '9.*'}
31+
32+
- {php: '8.1', laravel: '8.*'}
33+
- {php: '8.0', laravel: '8.*'}
2734
exclude:
35+
- {php: '8.2', deps: 'lowest'}
2836
- {php: '8.1', deps: 'lowest'}
2937
- {php: '8.0', deps: 'lowest'}
30-
- {php: '8.1', laravel: '7.*'}
31-
- {php: '7.4', laravel: '9.*'}
32-
- {php: '7.3', laravel: '9.*'}
3338
name: PHP ${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.deps }}
3439
steps:
3540
- name: Checkout code
@@ -52,11 +57,11 @@ jobs:
5257

5358
- name: Install dependencies (lowest)
5459
if: ${{ matrix.deps == 'lowest' }}
55-
run: composer update --prefer-lowest --prefer-dist --no-interaction --no-suggest
60+
run: composer update --prefer-lowest --prefer-dist --no-interaction
5661

5762
- name: Install dependencies (latest)
5863
if: ${{ matrix.deps != 'lowest' }}
59-
run: composer update --prefer-dist --no-interaction --no-suggest
64+
run: composer update --prefer-dist --no-interaction
6065

6166
- name: Execute tests
6267
run: vendor/bin/phpunit

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
66

77
## [Unreleased]
88

9+
## [3.15.0] - 2023-02-16
10+
### Added
11+
- Support for Laravel 10
12+
913
## [3.14.1] - 2022-12-03
1014
### Fixed
1115
- Correct feedback form URL ([#100](https://github.com/honeybadger-io/honeybadger-laravel/pull/100))

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@
2424
"php": "^7.2|^8.0",
2525
"honeybadger-io/honeybadger-php": "^2.8.2",
2626
"sixlive/dotenv-editor": "^1.1|^2.0",
27-
"illuminate/console": "^7.0|^8.0|^9.0",
28-
"illuminate/support": "^7.0|^8.0|^9.0",
29-
"monolog/monolog": "^2.0",
27+
"illuminate/console": "^7.0|^8.0|^9.0|^10.0",
28+
"illuminate/support": "^7.0|^8.0|^9.0|^10.0",
29+
"monolog/monolog": "^2.0|^3.2",
3030
"ext-json": "*"
3131
},
3232
"require-dev": {
3333
"larapack/dd": "^1.0",
3434
"mockery/mockery": "^1.4",
35-
"orchestra/testbench": "^5.0|^6.0|^7.0",
35+
"orchestra/testbench": "^5.0|^6.0|^7.0|^8.0",
3636
"phpunit/phpunit": "^8.4|^9.3"
3737
},
3838
"autoload": {

src/HoneybadgerLaravel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
class HoneybadgerLaravel extends Honeybadger
1414
{
15-
const VERSION = '3.14.1';
15+
const VERSION = '3.15.0';
1616

1717
// Don't forget to sync changes to this with the config file defaults
1818
const DEFAULT_BREADCRUMBS = [

0 commit comments

Comments
 (0)