Skip to content

Commit 926c1ac

Browse files
committed
Laravel 7 Support
1 parent be44804 commit 926c1ac

File tree

4 files changed

+15
-9
lines changed

4 files changed

+15
-9
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ language: php
22
php:
33
- 7.2
44
- 7.3
5+
- 7.4
56

67
env:
78
matrix:
@@ -13,4 +14,4 @@ before_script:
1314
- travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-source
1415

1516
script:
16-
- phpunit --coverage-text --coverage-clover=coverage.clover
17+
- phpunit --coverage-text --coverage-clover=coverage.clover

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
# Changelog
22

33
All Notable changes to `Laravel AdWords Targeting Idea Service` will be documented in this file.
4+
## [1.6.0] - 2020-04-12
5+
- Add Compatibility With Laravel 7
6+
- Drop support for Laravel 6
7+
- Minimum PHP 7.2.5
8+
49
## [1.5.0] - 2019-09-15
510
- add support for Laravel 6
611

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ Please see [CONTRIBUTING](CONTRIBUTING.md) for details.
120120

121121
## Security
122122

123-
If you discover any security related issues, please email githubissues@schulze.co instead of using the issue tracker.
123+
If you discover any security related issues, please email github@schulze.co instead of using the issue tracker.
124124

125125
## Credits
126126

composer.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@
1919
}
2020
],
2121
"require": {
22-
"php": "^7.2",
23-
"laravel/framework": "^6.0",
24-
"googleads/googleads-php-lib": "^43.0",
25-
"schulzefelix/laravel-data-transfer-object": "^1.2.0"
22+
"php": "^7.2.5",
23+
"laravel/framework": "^7.0",
24+
"googleads/googleads-php-lib": "^46.0",
25+
"schulzefelix/laravel-data-transfer-object": "^1.3.0"
2626
},
2727
"require-dev": {
28-
"mockery/mockery": "^1.0",
29-
"orchestra/testbench": "^4.0",
30-
"phpunit/phpunit" : "^8.0"
28+
"mockery/mockery": "^1.3",
29+
"orchestra/testbench": "^4.0|^5.0",
30+
"phpunit/phpunit" : "^8.0|^9.0"
3131
},
3232
"autoload": {
3333
"psr-4": {

0 commit comments

Comments
 (0)