Skip to content
This repository has been archived by the owner on May 25, 2020. It is now read-only.

Commit

Permalink
Add laravel 7.x supports (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
tarampampam authored Mar 3, 2020
1 parent 8f68633 commit 7f709b4
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 9 deletions.
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,12 @@ jobs:
env: laravel=5.8
- php: 7.3
env: coverage=true laravel=6.*
- php: 7.3
env: coverage=true laravel=7.*

- php: 7.4
env: setup=lowest
- php: 7.4
env: coverage=true laravel=6.*
- php: 7.4
env: coverage=true laravel=7.*
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog][keepachangelog] and this project adheres to [Semantic Versioning][semver].

## v3.1.0

### Changed

- Maximal `illuminate/*` packages version now is `7.*`

### Removed

- Unused dev-dependency `jeremeamia/superclosure`

## v3.0.2

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM composer:1.8.6 AS composer

FROM php:7.1.3-alpine
FROM php:7.2.5-alpine

ENV \
COMPOSER_ALLOW_SUPERUSER="1" \
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ static:
Roadrunner server starting:
```bash
```shell script
$ rr -c ./.rr.yaml serve -d
```

Expand Down
13 changes: 6 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,19 @@
"require": {
"php": "^7.1.3",
"ext-mbstring": "*",
"illuminate/contracts": "^5.5 || ~6.0",
"illuminate/support": "^5.5 || ~6.0",
"illuminate/http": "^5.5 || ~6.0",
"illuminate/routing": "^5.5 || ~6.0",
"spiral/roadrunner": "~1.5",
"illuminate/contracts": "^5.5 || ~6.0 || ~7.0",
"illuminate/support": "^5.5 || ~6.0 || ~7.0",
"illuminate/http": "^5.5 || ~6.0 || ~7.0",
"illuminate/routing": "^5.5 || ~6.0 || ~7.0",
"spiral/roadrunner": "~1.6",
"symfony/psr-http-message-bridge": "^1.2",
"zendframework/zend-diactoros": "^2"
},
"require-dev": {
"ext-pdo": "*",
"ext-pdo_sqlite": "*",
"ext-sqlite3": "*",
"jeremeamia/superclosure": "^2.4",
"laravel/laravel": "^5.5 || ~6.0",
"laravel/laravel": "^5.5 || ~6.0 || ~7.0",
"mockery/mockery": "^1.3",
"phpstan/phpstan": "~0.12",
"phpunit/phpunit": "^6.4 || ~7.5"
Expand Down

0 comments on commit 7f709b4

Please sign in to comment.