Skip to content

Commit

Permalink
Allow Symfony 7 (#152)
Browse files Browse the repository at this point in the history
  • Loading branch information
chalasr authored Nov 22, 2023
1 parent c62ee94 commit 4ec0b4c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## [NOT RELEASED]

### Added

- Add support for Symfony 7

## 0.3.1

### Fixed
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@
],
"require": {
"php": ">=8.0.5",
"symfony/runtime": "^5.4 || ^6.0"
"symfony/runtime": "^5.4 || ^6.0 || ^7.0"
},
"require-dev": {
"illuminate/http": "^9.14",
"phpunit/phpunit": "^9.5",
"swoole/ide-helper": "^4.6",
"symfony/http-foundation": "^5.4 || ^6.0",
"symfony/http-kernel": "^5.4 || ^6.0"
"symfony/http-foundation": "^5.4 || ^6.0 || ^7.0",
"symfony/http-kernel": "^5.4 || ^6.0 || ^7.0"
},
"conflict": {
"ext-swoole": "<4.6.0"
Expand Down

1 comment on commit 4ec0b4c

@thecaliskan
Copy link

@thecaliskan thecaliskan commented on 4ec0b4c Dec 7, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi @Nyholm, I hope you're well. When will the new version be released? @chalasr

Problem 1
    - Root composer.json requires runtime/swoole ^0.3.0 -> satisfiable by runtime/swoole[0.3.0, 0.3.1].
    - runtime/swoole[0.3.0, ..., 0.3.1] require symfony/runtime ^5.3 || ^6.0 -> found symfony/runtime[v5.3.0, ..., v5.4.26, v6.0.0, ..., v6.4.0] but it conflicts with your root composer.json require (7.0.*).

Please sign in to comment.