Skip to content
This repository was archived by the owner on Jul 15, 2021. It is now read-only.

Commit 57beff7

Browse files
authored
Merge pull request #38 from actuallymab/feature/support-laravel-57
Support for Laravel 5.7
2 parents 9b09405 + 2a1d96e commit 57beff7

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
language: php
22

33
php:
4-
- 7.1
4+
- 7.2
55

66
before_script:
77
- composer self-update

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ Just another comment system for laravel projects.
1818
5.4.x | 0.3.x
1919
5.5.x | 0.4.x
2020
5.6.x | 0.5.x
21+
5.7.x | 0.6.x
2122

2223
## Install
2324

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,16 @@
1717
}
1818
],
1919
"require": {
20-
"illuminate/database": "5.6.*",
21-
"php": ">=7.1.3"
20+
"illuminate/database": "5.7.*",
21+
"php": ">=7.2.3"
2222
},
2323
"require-dev": {
2424
"fzaninotto/faker": "~1.4",
2525
"squizlabs/php_codesniffer": "^2.3",
2626
"phpunit/phpunit": "~7.0",
2727
"mockery/mockery": "~0.9.0",
28-
"orchestra/testbench": "~3.6",
29-
"orchestra/database": "3.6.x@dev"
28+
"orchestra/testbench": "~3.7",
29+
"orchestra/database": "3.7.x@dev"
3030
},
3131
"autoload": {
3232
"psr-4": {

phpunit.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,10 @@
77
convertNoticesToExceptions="true"
88
convertWarningsToExceptions="true"
99
processIsolation="false"
10-
stopOnFailure="false"
11-
syntaxCheck="false">
10+
stopOnFailure="false">
1211
<testsuites>
1312
<testsuite name="Laravel Comment Test Suite">
1413
<directory suffix=".php">./tests/</directory>
1514
</testsuite>
1615
</testsuites>
17-
</phpunit>
16+
</phpunit>

0 commit comments

Comments
 (0)