Skip to content
This repository has been archived by the owner on Apr 28, 2024. It is now read-only.

Commit

Permalink
Release 4.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lcharette authored Jun 22, 2019
2 parents 4c607de + 9408350 commit e9e2fed
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 27 deletions.
23 changes: 0 additions & 23 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,36 +3,13 @@ dist: trusty
language: php

php:
- 5.6
- 7
- 7.1
- 7.2
- 7.3

env:
- LARAVEL_VERSION=5.4.*
- LARAVEL_VERSION=5.5.*
- LARAVEL_VERSION=5.6.*
- LARAVEL_VERSION=5.7.*
- LARAVEL_VERSION=5.8.*

matrix:
exclude:
- php: 5.6
env: LARAVEL_VERSION=5.5.*
- php: 5.6
env: LARAVEL_VERSION=5.6.*
- php: 5.6
env: LARAVEL_VERSION=5.7.*
- php: 5.6
env: LARAVEL_VERSION=5.8.*
- php: 7.0
env: LARAVEL_VERSION=5.6.*
- php: 7.0
env: LARAVEL_VERSION=5.7.*
- php: 7.0
env: LARAVEL_VERSION=5.8.*

before_script:
- travis_retry composer self-update
- if [ "$LARAVEL_VERSION" != "" ]; then composer require "illuminate/redis:${LARAVEL_VERSION}" --no-update; fi;
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [4.3.0]
- Dropping support for PHP 5.6 & 7.0
- Updated dependencies
- Updated PHPUnit to 7.5

## [4.2.2]
- Added `getHandler` to the Session class for easier testing

Expand All @@ -29,6 +34,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a


[#4]: https://github.com/userfrosting/session/pull/4
[4.3.0]: https://github.com/userfrosting/session/compare/4.2.2...4.3.0
[4.2.2]: https://github.com/userfrosting/session/compare/4.2.1...4.2.2
[4.2.1]: https://github.com/userfrosting/session/compare/4.2.0...4.2.1
[4.2.0]: https://github.com/userfrosting/session/compare/4.1.0...4.2.0
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@
}
],
"require": {
"illuminate/session": "^5.4",
"illuminate/support": "^5.4",
"php": ">=5.6"
"illuminate/session": "^5.8",
"illuminate/support": "^5.8",
"php": ">=7.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.13",
"phpunit/phpunit": "^5.7"
"phpunit/phpunit": "^7.5"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit e9e2fed

Please sign in to comment.