Skip to content
This repository has been archived by the owner on Aug 29, 2024. It is now read-only.

Commit

Permalink
Add support for Laravel 9 (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
tspencer244 authored Feb 10, 2023
1 parent ef74268 commit 39a6ec1
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 4 deletions.
35 changes: 35 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [v2.0.0] - 2023-02-10

### Added

- Added support for Laravel 9.
- Added support for PHP 8.1.

### Removed

- Removed support for Laravel 7.
- Removed support for PHP 7.4.

## [v1.0] - 2022-02-10

## [0.4.0] - 2020-11-27

## [0.3.0] - 2019-09-20

## [0.2.0] - 2019-09-20

[unreleased]: https://github.com/HealthEngineAU/laravel-prometheus-collectors/compare/v2.0.0...HEAD
[v2.0.0]: https://github.com/HealthEngineAU/laravel-prometheus-collectors/compare/v1.0...v2.0.0
[v1.0]: https://github.com/HealthEngineAU/laravel-prometheus-collectors/compare/0.4.0...v1.0
[0.4.0]: https://github.com/HealthEngineAU/laravel-prometheus-collectors/compare/0.3.0...0.4.0
[0.3.0]: https://github.com/HealthEngineAU/laravel-prometheus-collectors/compare/0.2.0...0.3.0
[0.2.0]: https://github.com/HealthEngineAU/laravel-prometheus-collectors/releases/tag/0.2.0
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@
}
],
"require": {
"php": "^7.4 || ^8.0",
"healthengine/laravel-prometheus-exporter": "^2.0",
"illuminate/queue": "^7.0 || ^8.0"
"php": "~8.0.0 || ~8.1.0",
"healthengine/laravel-prometheus-exporter": "^2.0 || ^3.0",
"illuminate/queue": "^8.0 || ^9.0"
},
"require-dev": {
"orchestra/testbench": "^5.8 || ^6.23",
"orchestra/testbench": "^6.0 || ^7.0",
"squizlabs/php_codesniffer": "^3.4"
},
"autoload": {
Expand Down

0 comments on commit 39a6ec1

Please sign in to comment.