Skip to content

Commit 88accfa

Browse files
authored
Merge pull request #31 from gsteel/php-8.4
Add support for PHP 8.3 & 8.4, Drop Support for PHP 8.0
2 parents 986e361 + 32634c7 commit 88accfa

6 files changed

+573
-474
lines changed

.laminas-ci.json

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"ignore_php_platform_requirements": {
3-
"8.2": true
4-
}
5-
}
3+
"8.4": true
4+
},
5+
"backwardCompatibilityCheck": true
6+
}

README.md

+8-9
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,19 @@
33
[![Build Status](https://github.com/mezzio/mezzio-migration/actions/workflows/continuous-integration.yml/badge.svg)](https://github.com/mezzio/mezzio-migration/actions/workflows/continuous-integration.yml)
44

55
> ## 🇷🇺 Русским гражданам
6-
>
6+
>
77
> Мы, участники Laminas, родились и живем в разных странах. У многих из нас есть друзья, родственники и коллеги как в России, так и в Украине. Некоторые из нас родились в России. Некоторые из нас живут в России. У некоторых бабушки и дедушки сражались с фашистами во Второй мировой войне. Здесь никто не поддерживает фашизм.
8-
>
8+
>
99
> У одного из нас есть украинская родственница, которая спаслась из дома вместе с сыном. Поезд задержался из-за бомбежки на дороге впереди. У нас есть друзья, которые прячутся в бомбоубежищах. Мы с тревогой ждем весточки от них после воздушных налетов, которые беспорядочно наносят удары и попадают по больницам, школам, детским садам и домам. Мы не берем это из каких-либо СМИ. Мы наблюдаем это напрямую.
10-
>
10+
>
1111
> Вы доверяете нам достаточно, чтоб использовать наши программы, и мы просим вас довериться нам вновь. Мы нуждаемся в помощи. Выходите и протестуйте против этой бесполезной войны. Остановите кровопролитие. Скажите "Нет войне!"
12-
>
12+
>
1313
> ## 🇺🇸 To Citizens of Russia
14-
>
14+
>
1515
> We at Laminas come from all over the world. Many of us have friends, family and colleagues in both Russia and Ukraine. Some of us were born in Russia. Some of us currently live in Russia. Some have grandparents who fought Nazis in World War II. Nobody here supports fascism.
16-
>
16+
>
1717
> One team member has a Ukrainian relative who fled her home with her son. The train was delayed due to bombing on the road ahead. We have friends who are hiding in bomb shelters. We anxiously follow up on them after the air raids, which indiscriminately fire at hospitals, schools, kindergartens and houses. We're not taking this from any media. These are our actual experiences.
18-
>
18+
>
1919
> You trust us enough to use our software. We ask that you trust us to say the truth on this. We need your help. Go out and protest this unnecessary war. Stop the bloodshed. Say "stop the war!"
2020
2121
This library provides a tool for migrating from Mezzio v2 to v3.
@@ -101,7 +101,6 @@ version 3, and to which the migration tool will update.
101101
| mezzio-problem-details | 1.0.0 |
102102
| laminas-stratigility | 3.0.0 |
103103
104-
105104
## What does the tool do?
106105
107106
In order to operate, the tool requires that the application directory contains a
@@ -176,7 +175,7 @@ Please manually compare and verify all changes made. It is possible that in some
176175
edge cases, the script will not work correctly. This will depend primarily on
177176
the number of modifications you have made to the original skeleton.
178177
179-
> #### Configuration-driven pipelines and routes
178+
> ### Configuration-driven pipelines and routes
180179
>
181180
> The script does not work currently make any modifications to pipeline and
182181
> route configuration; these will need to be updated manually.

composer.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -19,23 +19,23 @@
1919
"config": {
2020
"sort-packages": true,
2121
"platform": {
22-
"php": "8.0.99"
22+
"php": "8.1.99"
2323
},
2424
"allow-plugins": {
2525
"dealerdirect/phpcodesniffer-composer-installer": true
2626
}
2727
},
2828
"extra": {},
2929
"require": {
30-
"php": "~8.0.0 || ~8.1.0 || ~8.2.0",
30+
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
3131
"ext-json": "*",
3232
"symfony/console": "^2.8 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
3333
},
3434
"require-dev": {
3535
"laminas/laminas-coding-standard": "~2.5.0",
36-
"phpunit/phpunit": "^9.5.26",
37-
"psalm/plugin-phpunit": "^0.18.0",
38-
"vimeo/psalm": "^5.0.0"
36+
"phpunit/phpunit": "^9.6.21",
37+
"psalm/plugin-phpunit": "^0.19.0",
38+
"vimeo/psalm": "^5.26.1"
3939
},
4040
"autoload": {
4141
"psr-4": {

0 commit comments

Comments
 (0)