Skip to content

Commit

Permalink
Merge pull request #84 from scoutapp/add-laravel-9-support
Browse files Browse the repository at this point in the history
Add support for Laravel 9
  • Loading branch information
asgrim authored Mar 8, 2022
2 parents 6495485 + 5c6a512 commit 624a042
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 6 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/validate-composer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
- "6.*"
- "7.*"
- "8.*"
- "9.*"
php-version:
- "7.1"
- "7.2"
Expand All @@ -40,6 +41,11 @@ jobs:
# Laravel 8 supports PHP 7.3 - 8.1
- {laravel-version: "8.*", php-version: "7.1"} # Laravel 8 requires 7.3+
- {laravel-version: "8.*", php-version: "7.2"} # Laravel 8 requires 7.3+
# Laravel 9 supports PHP 7.3 - 8.1
- {laravel-version: "9.*", php-version: "7.1"} # Laravel 9 requires 8.0+
- {laravel-version: "9.*", php-version: "7.2"} # Laravel 9 requires 8.0+
- {laravel-version: "9.*", php-version: "7.3"} # Laravel 9 requires 8.0+
- {laravel-version: "9.*", php-version: "7.4"} # Laravel 9 requires 8.0+
steps:
- uses: actions/checkout@v2
- name: "Install PHP"
Expand Down
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,28 @@

All notable changes to this project will be documented in this file, in reverse chronological order by release.

## 2.2.0 - 2022-03-08

### Added

- Nothing.

### Changed

- [#84](https://github.com/scoutapp/scout-apm-laravel/pull/84) Updated to require `scout-apm-php` ^8.0 (Laravel 9 support)

### Deprecated

- Nothing.

### Removed

- Nothing.

### Fixed

- Nothing.

## 2.1.0 - 2022-01-19

### Added
Expand Down
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@
"development"
],
"require": {
"illuminate/contracts": "^5.5.0|^6.0|^7.0|^8.0",
"illuminate/http": "^5.5.0|^6.0|^7.0|^8.0",
"illuminate/routing": "^5.5.0|^6.0|^7.0|^8.0",
"illuminate/support": "^5.5.0|^6.0|^7.0|^8.0",
"illuminate/view": "^5.5.0|^6.0|^7.0|^8.0",
"scoutapp/scout-apm-php": "^7.0"
"illuminate/contracts": "^5.5.0|^6.0|^7.0|^8.0|^9.0",
"illuminate/http": "^5.5.0|^6.0|^7.0|^8.0|^9.0",
"illuminate/routing": "^5.5.0|^6.0|^7.0|^8.0|^9.0",
"illuminate/support": "^5.5.0|^6.0|^7.0|^8.0|^9.0",
"illuminate/view": "^5.5.0|^6.0|^7.0|^8.0|^9.0",
"scoutapp/scout-apm-php": "^8.0"
},
"config": {
"preferred-install": "dist",
Expand Down

0 comments on commit 624a042

Please sign in to comment.