Skip to content

Commit 291e31c

Browse files
committed
Support Laravel 5.8
1 parent 8a0faa5 commit 291e31c

File tree

8 files changed

+20
-3656
lines changed

8 files changed

+20
-3656
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
vendor
1+
/vendor
2+
.composer.lock
3+
.phpunit.result.cache

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ Laravel-specific testing helpers and asserts.
2222
| 5.5.* | [5.5.*](https://github.com/dmitry-ivanov/laravel-testing-tools/tree/5.5) |
2323
| 5.6.* | [5.6.*](https://github.com/dmitry-ivanov/laravel-testing-tools/tree/5.6) |
2424
| 5.7.* | [5.7.*](https://github.com/dmitry-ivanov/laravel-testing-tools/tree/5.7) |
25+
| 5.8.* | [5.8.*](https://github.com/dmitry-ivanov/laravel-testing-tools/tree/5.8) |
2526

2627
## Usage
2728

composer.json

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,19 @@
33
"description": "Laravel-specific testing helpers and asserts.",
44
"keywords": ["laravel", "testing", "helpers", "asserts"],
55
"license": "MIT",
6-
"authors": [
7-
{
8-
"name": "Dmitry Ivanov",
9-
"email": "[email protected]"
10-
}
11-
],
6+
"authors": [{
7+
"name": "Dmitry Ivanov",
8+
"email": "[email protected]"
9+
}],
1210
"require": {
1311
"php": "^7.1.3",
14-
"illuminate/support": "5.7.*",
15-
"illuminate/database": "5.7.*",
12+
"illuminate/support": "5.8.*",
13+
"illuminate/database": "5.8.*",
1614
"mockery/mockery": "^1.0"
1715
},
1816
"require-dev": {
19-
"phpunit/phpunit": "^7.0",
20-
"orchestra/testbench": "3.7.*"
17+
"phpunit/phpunit": "^7.5|^8.0",
18+
"orchestra/testbench": "3.8.*"
2119
},
2220
"autoload": {
2321
"psr-4": {

0 commit comments

Comments
 (0)