Skip to content

Commit 29b585a

Browse files
author
Felix
committed
add L5.5 compat
1 parent cacd42c commit 29b585a

File tree

5 files changed

+8
-12
lines changed

5 files changed

+8
-12
lines changed

.styleci.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
preset: laravel
2-
3-
linting: true
1+
preset: laravel

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ language: php
22
php:
33
- 7.0
44
- 7.1
5+
- 7.2
56

67
env:
78
matrix:

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,9 @@
22

33
All Notable changes to `laravel-search-console` will be documented in this file.
44

5+
## [0.1.0] - 2017-09-07
6+
- add compatibility with Laravel 5.5
7+
- dropped support for anything lower than Laravel 5.4
8+
59
## [0.0.1] - 2017-07-27
610
- Initial Beta Release

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@
2121
],
2222
"require": {
2323
"php" : "^7.0",
24-
"illuminate/support": "~5.1",
24+
"illuminate/support": "~5.4.0|~5.5.0",
2525
"google/apiclient": "^2.0",
2626
"madewithlove/illuminate-psr-cache-bridge": "^1.0"
2727
},
2828
"require-dev": {
2929
"phpunit/phpunit" : "^6.1",
3030
"mockery/mockery": "^0.9.5",
31-
"orchestra/testbench" : "~3.4.6"
31+
"orchestra/testbench" : "~3.4.6|~3.5.0"
3232
},
3333
"autoload": {
3434
"psr-4": {

phpunit.xml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,4 @@
1919
<directory suffix=".php">src/</directory>
2020
</whitelist>
2121
</filter>
22-
<logging>
23-
<log type="tap" target="build/report.tap"/>
24-
<log type="junit" target="build/report.junit.xml"/>
25-
<log type="coverage-html" target="build/coverage" charset="UTF-8" yui="true" highlight="true"/>
26-
<log type="coverage-text" target="build/coverage.txt"/>
27-
<log type="coverage-clover" target="build/logs/clover.xml"/>
28-
</logging>
2922
</phpunit>

0 commit comments

Comments
 (0)