Skip to content

Commit 7903a61

Browse files
committed
Add Laravel 6 Support
1 parent 7ae17e6 commit 7903a61

File tree

4 files changed

+8
-14
lines changed

4 files changed

+8
-14
lines changed

.scrutinizer.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,3 @@ checks:
1616
fix_line_ending: true
1717
fix_identation_4spaces: true
1818
fix_doc_comments: true
19-
20-
tools:
21-
external_code_coverage:
22-
timeout: 120
23-
runs: 4

.travis.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,4 @@ before_script:
1313
- travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-source
1414

1515
script:
16-
- phpunit --coverage-text --coverage-clover=coverage.clover
17-
18-
after_script:
19-
- php vendor/bin/ocular code-coverage:upload --format=php-clover coverage.clover
16+
- phpunit --coverage-text --coverage-clover=coverage.clover

CHANGELOG.md

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

33
All Notable changes to `Laravel AdWords Targeting Idea Service` will be documented in this file.
4+
## [1.5.0] - 2019-09-15
5+
- add support for Laravel 6
46

57
## [1.4.1] - 2019-03-10
68
- fix dependencies for carbon v2

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@
1919
}
2020
],
2121
"require": {
22-
"php": ">=7.1.0",
23-
"laravel/framework": "~5.8.0",
24-
"googleads/googleads-php-lib": "^40.0",
25-
"schulzefelix/laravel-data-transfer-object": "^1.1.0"
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"
2626
},
2727
"require-dev": {
2828
"mockery/mockery": "^1.0",
29-
"orchestra/testbench" : "~3.8.0",
29+
"orchestra/testbench": "^4.0",
3030
"phpunit/phpunit" : "^8.0"
3131
},
3232
"autoload": {

0 commit comments

Comments
 (0)