From bf432d993d82dba57da352395b6af852e2e927bb Mon Sep 17 00:00:00 2001 From: Theo Kouzelis Date: Tue, 17 Mar 2020 20:55:15 +0000 Subject: [PATCH 1/2] Add support Laravel 7 --- composer.json | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index 4dfa1ce..27f246c 100644 --- a/composer.json +++ b/composer.json @@ -4,10 +4,15 @@ "keywords": ["airbrake", "laravel"], "require": { "php": ">=5.4", - "airbrake/phpbrake": "^0.7.0", - "illuminate/support": "^5.0|^6.0", - "monolog/monolog": "^1.22" + "airbrake/phpbrake": "dev-fix/issue-97-monolog-2", + "illuminate/support": "^5.0|^6.0|^7.0" }, + "repositories": [ + { + "type": "vcs", + "url": "https://github.com/TheoKouzelis/phpbrake" + } + ], "license": "MIT", "authors": [ { From 7e44068221ef63b58f4ca7e46dbe289579a01e6d Mon Sep 17 00:00:00 2001 From: Theo Kouzelis Date: Thu, 9 Apr 2020 08:58:40 +0100 Subject: [PATCH 2/2] Update phpbrake dependency to 0.7.3 --- README.md | 6 +----- composer.json | 8 +------- 2 files changed, 2 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 527f125..fbe3a9b 100644 --- a/README.md +++ b/README.md @@ -5,11 +5,7 @@ This is a Laravel service provider for the latest Airbrake PHP package https://g The service provider will configure an instance of Airbrake\Notifier with an ID, key and environment name. ## Install -For Laravel >=6.0.0, you will need to downgrade Monolog to version 1. -``` -composer require monolog/monolog ^1.22 -``` -Them require this package via composer. +Require this package via composer. ``` composer require kouz/laravel-airbrake ``` diff --git a/composer.json b/composer.json index 27f246c..954b2d9 100644 --- a/composer.json +++ b/composer.json @@ -4,15 +4,9 @@ "keywords": ["airbrake", "laravel"], "require": { "php": ">=5.4", - "airbrake/phpbrake": "dev-fix/issue-97-monolog-2", + "airbrake/phpbrake": "^0.7.3", "illuminate/support": "^5.0|^6.0|^7.0" }, - "repositories": [ - { - "type": "vcs", - "url": "https://github.com/TheoKouzelis/phpbrake" - } - ], "license": "MIT", "authors": [ {