Skip to content

Commit

Permalink
Add support for Laravel 5.7
Browse files Browse the repository at this point in the history
  • Loading branch information
sebdesign committed Aug 31, 2018
1 parent a79f986 commit c688bca
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 8 deletions.
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
language: php

php:
- 5.5.9
- 5.6
- 7.0
- 7.1
Expand All @@ -20,4 +19,4 @@ script:
- vendor/bin/phpunit

after_script:
- php vendor/bin/ocular code-coverage:upload --format=php-clover coverage.clover
- php vendor/bin/ocular code-coverage:upload --format=php-clover coverage.clover
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to `laravel-sri` will be documented in this file

## 1.1.0 - 2018-09-01

- Add support for Laravel 5.7

## 1.0.6 - 2018-08-16

- Fix compatibility for Laravel 5.6
Expand Down
12 changes: 7 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,13 @@
"homepage": "https://github.com/sebdesign/laravel-sri",
"type": "library",
"require": {
"laravel/framework": "~5.1.16|~5.2.0|~5.3.0|~5.4.0|~5.5.0|~5.6.0"
"php": "^5.6.4|^7.0",
"laravel/framework": "~5.3.0|~5.4.0|~5.5.0|~5.6.0|~5.7.0"
},
"require-dev": {
"phpunit/phpunit": "~4.0|~5.0|~6.0",
"mockery/mockery": "^0.9.5",
"orchestra/testbench": "^3.2"
"phpunit/phpunit": "~5.4|~6.0|~7.0",
"mockery/mockery": "^0.9|^1.0",
"orchestra/testbench": "~3.3|~3.4|~3.5|~3.6|~3.7"
},
"autoload": {
"files": [
Expand All @@ -29,7 +30,8 @@
}
},
"scripts": {
"test": "vendor/bin/phpunit"
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"license": "MIT",
"authors": [
Expand Down
2 changes: 1 addition & 1 deletion phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@
<log type="coverage-text" target="build/coverage.txt"/>
<log type="coverage-clover" target="build/logs/clover.xml"/>
</logging>
</phpunit>
</phpunit>

0 comments on commit c688bca

Please sign in to comment.