Skip to content

Commit 11df7e1

Browse files
authored
Merge pull request #97 from bastien-phi/add_laravel_7_support
Add laravel 7.x support
2 parents d914a90 + be72e3b commit 11df7e1

File tree

2 files changed

+14
-8
lines changed

2 files changed

+14
-8
lines changed

.travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ language: php
22
dist: trusty
33

44
php:
5+
- 7.3
56
- 7.2
6-
- 7.1
77
- nightly
8-
8+
99
matrix:
1010
allow_failures:
1111
- php: nightly

composer.json

+12-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
{
22
"name": "rollbar/rollbar-laravel",
33
"description": "Rollbar error monitoring integration for Laravel projects",
4-
"keywords": ["laravel", "rollbar", "monitoring", "error", "logging"],
4+
"keywords": [
5+
"laravel",
6+
"rollbar",
7+
"monitoring",
8+
"error",
9+
"logging"
10+
],
511
"homepage": "https://github.com/rollbar/rollbar-php-laravel",
612
"license": "MIT",
713
"authors": [
@@ -17,13 +23,13 @@
1723
],
1824
"require": {
1925
"php": ">=7.2",
20-
"illuminate/support": "^6.0",
26+
"illuminate/support": "^6.0|^7.0",
2127
"rollbar/rollbar": "^2"
2228
},
2329
"require-dev": {
24-
"orchestra/testbench": "^4",
30+
"orchestra/testbench": "^4|^5",
2531
"mockery/mockery": "^1",
26-
"satooshi/php-coveralls": "^1.0",
32+
"php-coveralls/php-coveralls": "^2.2",
2733
"squizlabs/php_codesniffer": "3.*",
2834
"phpunit/phpunit": "^8"
2935
},
@@ -44,8 +50,8 @@
4450
},
4551
"scripts": {
4652
"test": [
47-
"phpunit --coverage-clover build/logs/clover.xml",
48-
"phpcs --standard=PSR1,PSR2 src tests"
53+
"phpunit --coverage-clover build/logs/clover.xml",
54+
"phpcs --standard=PSR1,PSR2 src tests"
4955
],
5056
"fix": "phpcbf --standard=PSR1,PSR2 src tests"
5157
}

0 commit comments

Comments
 (0)