Skip to content

Commit

Permalink
Merge pull request #12 from ARCANEDEV/update-laravel_5.6_support
Browse files Browse the repository at this point in the history
Adding Laravel 5.6 support
  • Loading branch information
arcanedev-maroc committed Feb 16, 2018
2 parents 230f229 + 0a7e93d commit cbea0b2
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 12 deletions.
7 changes: 3 additions & 4 deletions .travis.yml
Expand Up @@ -3,14 +3,13 @@ language: php
sudo: false

php:
- 7.0
- 7.1.3
- 7.1
- 7.2
- nightly

matrix:
allow_failures:
- php: 7.2
- php: nightly

before_script:
Expand All @@ -23,5 +22,5 @@ script:
- vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover

after_script:
- if [ "$TRAVIS_PHP_VERSION" != "7.2" ] && [ "$TRAVIS_PHP_VERSION" != "nightly" ]; then wget https://scrutinizer-ci.com/ocular.phar; fi
- if [ "$TRAVIS_PHP_VERSION" != "7.2" ] && [ "$TRAVIS_PHP_VERSION" != "nightly" ]; then php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi
- if [ "$TRAVIS_PHP_VERSION" != "nightly" ]; then wget https://scrutinizer-ci.com/ocular.phar; fi
- if [ "$TRAVIS_PHP_VERSION" != "nightly" ]; then php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -20,7 +20,7 @@ Units package that allows you to manage multiple units of measure in easy way.
* Easy setup & configuration.
* Well documented & IDE Friendly.
* Well tested with maximum code quality.
* Laravel `5.1 | 5.2 | 5.3 | 5.4 | 5.5` are supported.
* Laravel `5.1 | 5.2 | 5.3 | 5.4 | 5.5 | 5.6` are supported.
* Made with :heart: & :coffee:.

## Table of contents
Expand All @@ -44,7 +44,7 @@ If you discover any security related issues, please email arcanedev.maroc@gmail.
- [All Contributors][link-contributors]

[badge_php]: https://img.shields.io/badge/PHP-Framework%20agnostic-4F5B93.svg?style=flat-square
[badge_laravel]: https://img.shields.io/badge/Laravel%20Supported-5.1%20to%205.5-orange.svg?style=flat-square
[badge_laravel]: https://img.shields.io/badge/Laravel%20Supported-5.1%20to%205.6-orange.svg?style=flat-square
[badge_license]: https://img.shields.io/packagist/l/arcanedev/units.svg?style=flat-square
[badge_build]: https://img.shields.io/travis/ARCANEDEV/Units.svg?style=flat-square
[badge_coverage]: https://img.shields.io/scrutinizer/coverage/g/ARCANEDEV/Units.svg?style=flat-square
Expand Down
12 changes: 6 additions & 6 deletions composer.json
Expand Up @@ -14,13 +14,13 @@
"type": "library",
"license": "MIT",
"require": {
"php": "^7.0.0",
"arcanedev/support": "~4.2.0"
"php": "^7.1.3",
"arcanedev/support": "~4.3.0"
},
"require-dev": {
"orchestra/testbench": "~3.5.0",
"phpunit/phpcov": "~4.0",
"phpunit/phpunit": "~6.0"
"orchestra/testbench": "~3.6.0",
"phpunit/phpcov": "~5.0",
"phpunit/phpunit": "~7.0"
},
"autoload": {
"psr-4": {
Expand All @@ -34,7 +34,7 @@
},
"config": {
"platform": {
"php": "7.0.0"
"php": "7.1.3"
}
},
"extra": {
Expand Down

0 comments on commit cbea0b2

Please sign in to comment.