Skip to content

Commit 660b1d2

Browse files
authored
Allow Symfony 7 (#152)
1 parent 1c6ac3d commit 660b1d2

File tree

29 files changed

+70
-24
lines changed

29 files changed

+70
-24
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"symfony/console": "^5.2 || ^6.0",
2525
"symfony/dependency-injection": "^5.2 || ^6.0",
2626
"symfony/http-foundation": "^5.3 || ^6.0",
27-
"symfony/http-kernel": "^5.4 || ^6.0",
27+
"symfony/http-kernel": "^5.4 || ^6.0 || ^7.0",
2828
"symfony/psr-http-message-bridge": "^2.1",
2929
"symfony/runtime": "^5.3 || ^6.0"
3030
},

src/bref/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## [NOT RELEASED]
44

5+
### Added
6+
7+
- Add support for Symfony 7
8+
59
## 0.3.1
610

711
### Fixed

src/bref/composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@
1717
"psr/http-server-handler": "^1.0",
1818
"riverline/multipart-parser": "^2.0.9",
1919
"runtime/bref-layer": "^1.3",
20-
"symfony/runtime": "^5.4 || ^6.0"
20+
"symfony/runtime": "^5.4 || ^6.0 || ^7.0"
2121
},
2222
"require-dev": {
2323
"bref/bref": "^1.3",
2424
"guzzlehttp/test-server": "^0.1",
2525
"phpunit/phpunit": "^9.5",
26-
"symfony/http-foundation": "^5.4 || ^6.0",
27-
"symfony/http-kernel": "^5.4 || ^6.0"
26+
"symfony/http-foundation": "^5.4 || ^6.0 || ^7.0",
27+
"symfony/http-kernel": "^5.4 || ^6.0 || ^7.0"
2828
},
2929
"minimum-stability": "dev",
3030
"prefer-stable": true,

src/frankenphp-symfony/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Change Log
22

3+
## [NOT RELEASED]
4+
5+
### Added
6+
7+
- Add support for Symfony 7
8+
39
## 0.1.0
410

511
First version

src/frankenphp-symfony/composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
],
1212
"require": {
1313
"php": ">=8.0",
14-
"symfony/dependency-injection": "^5.4 || ^6.0",
15-
"symfony/http-kernel": "^5.4 || ^6.0",
16-
"symfony/runtime": "^5.4 || ^6.0"
14+
"symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
15+
"symfony/http-kernel": "^5.4 || ^6.0 || ^7.0",
16+
"symfony/runtime": "^5.4 || ^6.0 || ^7.0"
1717
},
1818
"require-dev": {
1919
"phpunit/phpunit": "^9.5"

src/google-cloud/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## [NOT RELEASED]
44

5+
### Added
6+
7+
- Add support for Symfony 7
8+
59
### 0.1.1
610

711
### Added

src/google-cloud/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"require": {
1313
"php": ">=8.0.5",
1414
"ext-json": "*",
15-
"symfony/runtime": "^5.4 || ^6.0"
15+
"symfony/runtime": "^5.4 || ^6.0 || ^7.0"
1616
},
1717
"require-dev": {
1818
"phpunit/phpunit": "^9.5"

src/laravel/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## [NOT RELEASED]
44

5+
### Added
6+
7+
- Add support for Symfony 7
8+
59
### 0.1.1
610

711
### Added

src/laravel/composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@
1212
"require": {
1313
"php": ">=8.0.5",
1414
"illuminate/contracts": "^8.33",
15-
"symfony/runtime": "^5.4 || ^6.0"
15+
"symfony/runtime": "^5.4 || ^6.0 || ^7.0"
1616
},
1717
"require-dev": {
1818
"illuminate/http": "^8.33",
1919
"phpunit/phpunit": "^9.5",
20-
"symfony/console": "^5.4 || ^6.0"
20+
"symfony/console": "^5.4 || ^6.0 || ^7.0"
2121
},
2222
"minimum-stability": "dev",
2323
"prefer-stable": true,

src/psr-17/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
### Added
66

77
- Add support for Symfony 6
8+
- Add support for Symfony 7
89

910
## 0.1.0
1011

0 commit comments

Comments
 (0)