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

Commit

Permalink
Updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
lcharette committed Jun 22, 2019
1 parent 50238b2 commit 2c2149a
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 31 deletions.
27 changes: 0 additions & 27 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,39 +3,12 @@ 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;
- travis_retry composer install --prefer-source --no-interaction

script:
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 Illuminate/Config to 5.8
- Updated PHPUnit to 7.5

## [4.2.1]
- Fix issue with FileRepositoryLoader's `prependPath` method.
- Fix issue with `Util::stripPrefix` if prefix is same as string to process on PHP 5.6.
Expand All @@ -29,6 +34,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
## 4.0.0
- Initial Release

[4.3.0]: https://github.com/userfrosting/support/compare/4.2.1...4.3.0
[4.2.1]: https://github.com/userfrosting/support/compare/4.2.0...4.2.1
[4.2.0]: https://github.com/userfrosting/support/compare/4.1.3...4.2.0
[4.1.3]: https://github.com/userfrosting/support/compare/4.1.2...4.1.3
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Support module for UserFrosting 4

[![Latest Version](https://img.shields.io/github/release/userfrosting/support.svg)](https://github.com/userfrosting/support/releases)
![PHP Version](https://img.shields.io/packagist/php-v/userfrosting/userfrosting.svg?color=brightgreen)
[![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg)](LICENSE.md)
[![Join the chat at https://chat.userfrosting.com/channel/support](https://demo.rocket.chat/images/join-chat.svg)](https://chat.userfrosting.com/channel/support)
[![Donate](https://img.shields.io/badge/Open%20Collective-Donate-blue.svg)](https://opencollective.com/userfrosting#backer)
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@
}
],
"require": {
"illuminate/config": "^5.4",
"illuminate/config": "^5.8",
"jackiedo/dotenv-editor": "~1.0.7",
"php": ">=5.6.0",
"userfrosting/uniformresourcelocator": "~4.2.1",
"php": ">=7.1",
"userfrosting/uniformresourcelocator": "~4.2.1 | ~4.3.0",
"symfony/yaml": ">=2.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 2c2149a

Please sign in to comment.