Skip to content

Commit

Permalink
Merge pull request #4 from aheenam/upgrade/laravel-58
Browse files Browse the repository at this point in the history
[NEW VERSION] Upgrade to Laravel 5.8
  • Loading branch information
rathesDot authored Feb 28, 2019
2 parents 15e3862 + bdc33e2 commit 8ceac0e
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 7 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@ vendor/
.idea/
composer.lock
.php_cs.cache
build/
build/
.phpunit.result.cache
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
CHANGELOG
===

This changelog contains all notable change of the laravel-collection-addon package
This changelog contains all notable change of the laravel-collection-addon package

## 2.0.0

- This version drops support for Laravel 5.6 and PHP 7.1
- It add support for Laravel 5.8
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ Laravel Collection Addons

This package provides some additional functions that can be used with Laravel's Collection.

## Requirements

This package requires PHP in`>= 7.2` and Laravel in `>= 5.7`.

Installation
---
You can install the package via composer:
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
],
"minimum-stability": "stable",
"require": {
"php" : "^7.1",
"illuminate/support": "~5.6.0|~5.7.0"
"php" : "^7.2",
"illuminate/support": "~5.7.0|~5.8.0"
},
"require-dev": {
"phpunit/phpunit": "^7.0",
"orchestra/testbench": "~3.6.0|~3.7.0"
"phpunit/phpunit": "^7.0|^8.0",
"orchestra/testbench": "~3.7.0|~3.8.0"
},
"autoload": {
"psr-4": {
Expand Down
2 changes: 1 addition & 1 deletion tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ abstract class TestCase extends Orchestra
/**
* Setup the test environment.
*/
public function setUp()
public function setUp(): void
{
parent::setUp();
}
Expand Down

0 comments on commit 8ceac0e

Please sign in to comment.