Skip to content
This repository has been archived by the owner on Jan 17, 2022. It is now read-only.

Commit

Permalink
chore(composer): Upgrade dependencies (#59)
Browse files Browse the repository at this point in the history
* Make sure PHP version `7.2.19` is still supported

* Pin version of Swoole to `4.3.x` line
  • Loading branch information
k911 authored Jul 18, 2019
1 parent d136313 commit 49b75b4
Show file tree
Hide file tree
Showing 6 changed files with 373 additions and 263 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ cache:
env:
global:
- COMPOSER_ARGS=install
- SWOOLE_VERSION=4.3.4
- SWOOLE_VERSION=4.3.6

matrix:
include:
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG PHP_TAG="7.3-cli-alpine3.9"
ARG PHP_TAG="7.3-cli-alpine3.10"

FROM php:$PHP_TAG as ext-builder
RUN docker-php-source extract && \
Expand All @@ -16,7 +16,7 @@ RUN pecl install xdebug && \
docker-php-ext-enable xdebug

FROM ext-builder as ext-swoole
ARG SWOOLE_VERSION="4.3.4"
ARG SWOOLE_VERSION="4.4.1"
RUN pecl install swoole-${SWOOLE_VERSION} && \
docker-php-ext-enable swoole

Expand Down
17 changes: 10 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,13 @@

Symfony integration with [Swoole](https://www.swoole.co.uk/) to speed up your applications.

- [Quick start guide](#quick-start-guide)
- [Features](#features)
- [Requirements](#requirements)
- [Configuration](./docs/configuration-reference.md)
- [Usage with Docker](./docs/docker-usage.md)
- [Swoole Bundle](#Swoole-Bundle)
- [Quick start guide](#Quick-start-guide)
- [Features](#Features)
- [Requirements](#Requirements)
- [Swoole](#Swoole)
- [Version check](#Version-check)
- [Installation](#Installation)

## Quick start guide

Expand Down Expand Up @@ -75,8 +77,9 @@ Symfony integration with [Swoole](https://www.swoole.co.uk/) to speed up your ap

## Requirements

- Swoole PHP Extension `^4.3.0`
- Symfony `^4.2`
- PHP version `>= 7.2.19`
- Swoole PHP Extension `>= 4.3.6`
- Symfony `>= 4.2.10`

Additional requirements to enable specific features:

Expand Down
11 changes: 7 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
}],
"require": {
"php": "^7.2",
"ext-swoole": "^4.3.4",
"ext-swoole": "~4.3.6",
"beberlei/assert": "^3.0",
"symfony/config": "^4.3.1",
"symfony/console": "^4.3.1",
Expand All @@ -40,7 +40,7 @@
"phpunit/php-code-coverage": "^7.0",
"phpunit/phpcov": "^6.0",
"phpunit/phpunit": "^8.0.4",
"swoole/ide-helper": "^4.3",
"swoole/ide-helper": "~4.3.4",
"symfony/debug": "^4.3.1",
"symfony/framework-bundle": "^4.3.1",
"symfony/messenger": "^4.3.1",
Expand Down Expand Up @@ -110,10 +110,13 @@
},
"extra": {
"branch-alias": {
"dev-develop": "v0.5.x-dev"
"dev-develop": "v0.6.x-dev"
}
},
"config": {
"sort-packages": true
"sort-packages": true,
"platform": {
"php": "7.2.19"
}
}
}
Loading

0 comments on commit 49b75b4

Please sign in to comment.