Skip to content

Commit

Permalink
Merge pull request #11 from ARCANEDEV/update-laravel_5.5_support
Browse files Browse the repository at this point in the history
Adding Laravel 5.5 Support
  • Loading branch information
arcanedev-maroc committed Feb 16, 2018
2 parents f655492 + 6ddeef2 commit 230f229
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 10 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Expand Up @@ -3,7 +3,6 @@ language: php
sudo: false

php:
- 5.6
- 7.0
- 7.1
- 7.2
Expand Down
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` are supported.
* Laravel `5.1 | 5.2 | 5.3 | 5.4 | 5.5` 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.4-orange.svg?style=flat-square
[badge_laravel]: https://img.shields.io/badge/Laravel%20Supported-5.1%20to%205.5-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
22 changes: 17 additions & 5 deletions composer.json
Expand Up @@ -14,13 +14,13 @@
"type": "library",
"license": "MIT",
"require": {
"php": ">=5.6.4",
"arcanedev/support": "~4.1.0"
"php": "^7.0.0",
"arcanedev/support": "~4.2.0"
},
"require-dev": {
"orchestra/testbench": "~3.4.0",
"phpunit/phpcov": "~3.0",
"phpunit/phpunit": "~5.0"
"orchestra/testbench": "~3.5.0",
"phpunit/phpcov": "~4.0",
"phpunit/phpunit": "~6.0"
},
"autoload": {
"psr-4": {
Expand All @@ -31,5 +31,17 @@
"psr-4": {
"Arcanedev\\Units\\Tests\\": "tests/"
}
},
"config": {
"platform": {
"php": "7.0.0"
}
},
"extra": {
"laravel": {
"providers": [
"Arcanedev\\Units\\UnitsServiceProvider"
]
}
}
}
4 changes: 2 additions & 2 deletions tests/TestCase.php
@@ -1,14 +1,14 @@
<?php namespace Arcanedev\Units\Tests;

use PHPUnit_Framework_TestCase;
use PHPUnit\Framework\TestCase as BaseTestCase;

/**
* Class TestCase
*
* @package Arcanedev\Units\Tests
* @author ARCANEDEV <arcanedev.maroc@gmail.com>
*/
abstract class TestCase extends PHPUnit_Framework_TestCase
abstract class TestCase extends BaseTestCase
{
//
}

0 comments on commit 230f229

Please sign in to comment.