Skip to content

Commit

Permalink
add support for Laravel 5.5
Browse files Browse the repository at this point in the history
  • Loading branch information
freekmurze committed Aug 12, 2017
1 parent 67a2a2e commit 8260a24
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 10 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

All notable changes to laravel-glide will be documented in this file.

## 3.2.0 - 2017-08-12
- support for Laravel 5.5

## 3.1.0 - 2017-01-24
- support for Laravel 5.4

Expand Down
5 changes: 2 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@
],
"require": {
"php": "^7.0",
"illuminate/support": "~5.3.0|~5.4.0",
"illuminate/support": "~5.3.0|~5.4.0|~5.5.0",
"league/glide": "^1.0"

},
"require-dev": {
"phpunit/phpunit": "5.*",
"orchestra/testbench": "~3.3.0|~3.4.0"
"orchestra/testbench": "~3.3.0|~3.4.0|~5.5.0"
},
"autoload": {
"psr-4": {
Expand All @@ -29,7 +29,6 @@
"Spatie\\Glide\\Test\\": "tests"
}
},
"minimum-stability": "stable",
"scripts": {
"test": "vendor/bin/phpunit"
},
Expand Down
7 changes: 0 additions & 7 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,4 @@
<directory suffix=".php">src/</directory>
</whitelist>
</filter>
<logging>
<log type="tap" target="build/report.tap"/>
<log type="junit" target="build/report.junit.xml"/>
<log type="coverage-html" target="build/coverage" charset="UTF-8" yui="true" highlight="true"/>
<log type="coverage-text" target="build/coverage.txt"/>
<log type="coverage-clover" target="build/logs/clover.xml"/>
</logging>
</phpunit>

0 comments on commit 8260a24

Please sign in to comment.