Skip to content

Commit

Permalink
Laravel 9 Support
Browse files Browse the repository at this point in the history
  • Loading branch information
schulzefelix committed Mar 20, 2022
1 parent 41c28c5 commit 06f6d8f
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 7 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
15 changes: 8 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down

0 comments on commit 06f6d8f

Please sign in to comment.