From 06f6d8fe38739e12c89120451f5873503b74354b Mon Sep 17 00:00:00 2001 From: schulzefelix Date: Sun, 20 Mar 2022 12:34:38 +0100 Subject: [PATCH] Laravel 9 Support --- CHANGELOG.md | 8 ++++++++ composer.json | 15 ++++++++------- 2 files changed, 16 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e8633d1..95099ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ # Changelog All Notable changes to `Laravel AdWords Targeting Idea Service` will be documented in this file. +## [1.9.0] - 2022-03-20 +- Add Compatibility With Laravel 9 +- Drop support for Laravel 8 +- Minimum PHP 8.0.2 +- Using version 56.0 of googleads/googleads-php-lib +- reduce laravel dependencies to specific packages (console,support) + + ## [1.8.0] - 2021-04-11 - Add Compatibility With PHP 8.0 - Using version 52.0 of googleads/googleads-php-lib diff --git a/composer.json b/composer.json index 11fbd4c..3779f8f 100644 --- a/composer.json +++ b/composer.json @@ -19,15 +19,16 @@ } ], "require": { - "php": "^7.3|^8.0", - "laravel/framework": "^8.0", - "googleads/googleads-php-lib": "^52.0", - "schulzefelix/laravel-data-transfer-object": "^1.4.0" + "php": "^8.0.2", + "illuminate/console": "^9.0", + "illuminate/support": "^9.0", + "googleads/googleads-php-lib": "^56.0", + "schulzefelix/laravel-data-transfer-object": "^1.5.0" }, "require-dev": { - "mockery/mockery": "^1.4.2", - "orchestra/testbench": "^5.0|^6.0", - "phpunit/phpunit" : "^8.0|^9.0" + "mockery/mockery": "^1.4", + "orchestra/testbench": "^7.0", + "phpunit/phpunit": "^9.4" }, "autoload": { "psr-4": {