Skip to content

Commit

Permalink
Upgrade to Symfony 7.1 (#39)
Browse files Browse the repository at this point in the history
  • Loading branch information
fre5h authored May 31, 2024
1 parent 1ef06a2 commit f67672a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: 'Setup PHP'
uses: shivammathur/setup-php@v2
with:
php-version: 8.2
php-version: 8.3
ini-values: memory_limit=-1
coverage: none
tools: composer:v2
Expand All @@ -37,7 +37,7 @@ jobs:
- name: 'Setup PHP'
uses: shivammathur/setup-php@v2
with:
php-version: 8.2
php-version: 8.3
ini-values: memory_limit=-1
coverage: none
tools: composer:v2
Expand All @@ -58,7 +58,7 @@ jobs:
- name: 'Setup PHP'
uses: shivammathur/setup-php@v2
with:
php-version: 8.2
php-version: 8.3
ini-values: memory_limit=-1
coverage: none
tools: composer:v2
Expand All @@ -83,7 +83,7 @@ jobs:
- name: 'Setup PHP'
uses: shivammathur/setup-php@v2
with:
php-version: 8.2
php-version: 8.3
ini-values: memory_limit=-1
coverage: none
tools: composer:v2
Expand All @@ -103,9 +103,10 @@ jobs:
fail-fast: false
matrix:
php-version:
- '8.2'
- '8.3'
symfony-version:
- '7.0'
- '7.1'
steps:
- name: 'Checkout Code'
uses: actions/checkout@v4
Expand Down Expand Up @@ -140,7 +141,7 @@ jobs:
- name: 'Setup PHP'
uses: shivammathur/setup-php@v2
with:
php-version: 8.2
php-version: 8.3
ini-values: memory_limit=-1
coverage: pcov
tools: composer:v2
Expand Down
2 changes: 1 addition & 1 deletion .styleci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ risky: true
preset: symfony
tab-width: 4
use-tabs: false
version: 8.2
version: 8.3
enabled:
- combine_consecutive_unsets
- ordered_class_elements
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

## Features 🎁

- [x] Compatible with latest [Centrifugo 5.3.2](https://github.com/centrifugal/centrifugo/releases/tag/v5.3.2) 🚀
- [x] Compatible with latest [Centrifugo 5.4.0](https://github.com/centrifugal/centrifugo/releases/tag/v5.4.0) 🚀
- [x] Wrapper over [Centrifugo HTTP API](https://centrifugal.dev/docs/server/server_api#http-api) 🔌
- [X] Authentication with JWT token (HMAC algorithm) for [anonymous](./Resources/docs/authentication.md#anonymous), [authenticated user](./Resources/docs/authentication.md#authenticated-user) and [private channel](./Resources/docs/authentication.md#private-channel) 🗝️
- [x] [Batch request](./Resources/docs/centrifugo_service_methods.md#batch-request) in [JSON streaming format](https://en.wikipedia.org/wiki/JSON_streaming) 💪
Expand All @@ -35,7 +35,7 @@ $ composer req fresh/centrifugo-bundle

| Bundle Version (X.Y.Z) | PHP | Symfony | Comment |
|:----------------------:|:--------:|:-------:|:--------------------|
| `5.1.*` | `>= 8.2` | `7.*` | **Current version** |
| `5.2.*` | `>= 8.2` | `7.*` | **Current version** |
| `4.1.*` | `>= 8.2` | `6.*` | Previous version |

By default, [Symfony Flex](https://symfony.com/doc/current/setup/flex.html) adds this bundle to the `config/bundles.php` file and adds required environment variables into `.env` file.
Expand Down

0 comments on commit f67672a

Please sign in to comment.