Skip to content

Commit 9021f65

Browse files
committed
Add Laravel 5.8 compatibility
1 parent 0ef8d81 commit 9021f65

File tree

3 files changed

+9
-11
lines changed

3 files changed

+9
-11
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ composer.lock
22
/vendor
33
/node_modules
44
yarn.lock
5+
.phpunit.result.cache

composer.json

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,19 +24,18 @@
2424
"illuminate/queue": "5.5 - 5.8",
2525
"illuminate/support": "5.5 - 5.8",
2626
"mixpanel/mixpanel-php": "*",
27-
"sinergi/browser-detector": "~5.0"
27+
"sinergi/browser-detector": "*"
2828
},
2929
"require-dev": {
30-
"fzaninotto/faker": "~1.4",
30+
"fzaninotto/faker": "*",
3131
"laravel/laravel": "5.8",
32-
"laravel/browser-kit-testing": "^4.0",
33-
"mockery/mockery": "0.9.*",
34-
"phpmd/phpmd": "^2.6",
32+
"laravel/browser-kit-testing": "*",
33+
"mockery/mockery": "*",
34+
"phpmd/phpmd": "*",
3535
"phpunit/phpunit": "*",
3636
"sebastian/phpcpd": "*",
37-
"symfony/thanks": "^1.0",
38-
"codedungeon/phpunit-result-printer": "*",
39-
"php-coveralls/php-coveralls": "^2.0"
37+
"symfony/thanks": "*",
38+
"php-coveralls/php-coveralls": "*"
4039
},
4140
"autoload-dev": {
4241
"psr-4": {

phpunit.xml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,8 @@
77
convertErrorsToExceptions="true"
88
convertNoticesToExceptions="true"
99
convertWarningsToExceptions="true"
10-
printerClass="Codedungeon\PHPUnitPrettyResultPrinter\Printer"
1110
processIsolation="false"
12-
stopOnFailure="true"
13-
syntaxCheck="false"
11+
stopOnFailure="false"
1412
>
1513
<testsuites>
1614
<testsuite name="Feature">

0 commit comments

Comments
 (0)