Skip to content

Commit e7dc71a

Browse files
authored
Prepare release for Franken (#159)
This will fix #157
1 parent 02a3d24 commit e7dc71a

File tree

7 files changed

+17
-10
lines changed

7 files changed

+17
-10
lines changed

.github/workflows/static.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,9 @@ jobs:
7878
- name: Setup PHP
7979
uses: shivammathur/setup-php@v2
8080
with:
81-
php-version: 8.1
81+
php-version: 8.2
8282
coverage: none
83-
tools: vimeo/psalm:5.15.0
83+
tools: vimeo/psalm:5.17
8484

8585
- name: Download dependencies
8686
uses: ramsey/composer-install@v2

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"guzzlehttp/psr7": "^1.8 || ^2.0",
1717
"illuminate/contracts": "^8.33",
1818
"laminas/laminas-diactoros": "^2.5",
19-
"laminas/laminas-httphandlerrunner": "^1.2",
19+
"laminas/laminas-httphandlerrunner": "^1.5 || ^2.9",
2020
"nyholm/psr7": "^1.3",
2121
"nyholm/psr7-server": "^1.0",
2222
"react/http": "^1.2",

psalm.baseline.xml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<files psalm-version="5.15.0@5c774aca4746caf3d239d9c8cadb9f882ca29352">
2+
<files psalm-version="5.17.0@c620f6e80d0abfca532b00bda366062aaedf6e5d">
33
<file src="src/bref/src/Runtime.php">
44
<InvalidArgument>
55
<code>$options</code>
@@ -11,10 +11,18 @@
1111
</InvalidArgument>
1212
</file>
1313
<file src="src/frankenphp-symfony/src/Runner.php">
14+
<UndefinedVariable>
15+
<code>$sfRequest</code>
16+
</UndefinedVariable>
1417
<UndefinedFunction>
1518
<code><![CDATA[\frankenphp_handle_request($handler)]]></code>
1619
</UndefinedFunction>
1720
</file>
21+
<file src="src/frankenphp-symfony/src/Runtime.php">
22+
<InvalidArgument>
23+
<code>$options</code>
24+
</InvalidArgument>
25+
</file>
1826
<file src="src/google-cloud/router.php">
1927
<MissingFile>
2028
<code><![CDATA[require_once $_SERVER['SCRIPT_FILENAME'] = $defaultSource]]></code>

src/frankenphp-symfony/CHANGELOG.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
# Change Log
22

3-
## [NOT RELEASED]
4-
5-
### Added
3+
## 0.2.0
64

75
- Add support for Symfony 7
86
- Add `frankenphp_loop_max` option
7+
- Drop support for PHP 8.0
98

109
## 0.1.0
1110

src/frankenphp-symfony/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
}
1111
],
1212
"require": {
13-
"php": ">=8.0",
13+
"php": ">=8.1",
1414
"symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
1515
"symfony/http-kernel": "^5.4 || ^6.0 || ^7.0",
1616
"symfony/runtime": "^5.4 || ^6.0 || ^7.0"

src/psr-laminas/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
"laminas/laminas-diactoros": "^2.5",
15-
"laminas/laminas-httphandlerrunner": "^1.2",
15+
"laminas/laminas-httphandlerrunner": "^1.5 || ^2.9",
1616
"symfony/runtime": "^5.4 || ^6.0 || ^7.0"
1717
},
1818
"require-dev": {

src/psr-nyholm-laminas/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
],
1212
"require": {
1313
"php": ">=8.0.5",
14-
"laminas/laminas-httphandlerrunner": "^1.2",
14+
"laminas/laminas-httphandlerrunner": "^1.5 || ^2.9",
1515
"nyholm/psr7": "^1.3",
1616
"nyholm/psr7-server": "^1.0",
1717
"symfony/runtime": "^5.4 || ^6.0 || ^7.0"

0 commit comments

Comments
 (0)