Skip to content

Commit

Permalink
Merge pull request #31 from gsteel/php-8.4
Browse files Browse the repository at this point in the history
Add support for PHP 8.3 & 8.4, Drop Support for PHP 8.0
  • Loading branch information
gsteel authored Oct 16, 2024
2 parents 986e361 + 32634c7 commit 88accfa
Show file tree
Hide file tree
Showing 6 changed files with 573 additions and 474 deletions.
7 changes: 4 additions & 3 deletions .laminas-ci.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"ignore_php_platform_requirements": {
"8.2": true
}
}
"8.4": true
},
"backwardCompatibilityCheck": true
}
17 changes: 8 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@
[![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)

> ## 🇷🇺 Русским гражданам
>
>
> Мы, участники Laminas, родились и живем в разных странах. У многих из нас есть друзья, родственники и коллеги как в России, так и в Украине. Некоторые из нас родились в России. Некоторые из нас живут в России. У некоторых бабушки и дедушки сражались с фашистами во Второй мировой войне. Здесь никто не поддерживает фашизм.
>
>
> У одного из нас есть украинская родственница, которая спаслась из дома вместе с сыном. Поезд задержался из-за бомбежки на дороге впереди. У нас есть друзья, которые прячутся в бомбоубежищах. Мы с тревогой ждем весточки от них после воздушных налетов, которые беспорядочно наносят удары и попадают по больницам, школам, детским садам и домам. Мы не берем это из каких-либо СМИ. Мы наблюдаем это напрямую.
>
>
> Вы доверяете нам достаточно, чтоб использовать наши программы, и мы просим вас довериться нам вновь. Мы нуждаемся в помощи. Выходите и протестуйте против этой бесполезной войны. Остановите кровопролитие. Скажите "Нет войне!"
>
>
> ## 🇺🇸 To Citizens of Russia
>
>
> 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.
>
>
> 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.
>
>
> 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!"
This library provides a tool for migrating from Mezzio v2 to v3.
Expand Down Expand Up @@ -101,7 +101,6 @@ version 3, and to which the migration tool will update.
| mezzio-problem-details | 1.0.0 |
| laminas-stratigility | 3.0.0 |
## What does the tool do?
In order to operate, the tool requires that the application directory contains a
Expand Down Expand Up @@ -176,7 +175,7 @@ Please manually compare and verify all changes made. It is possible that in some
edge cases, the script will not work correctly. This will depend primarily on
the number of modifications you have made to the original skeleton.
> #### Configuration-driven pipelines and routes
> ### Configuration-driven pipelines and routes
>
> The script does not work currently make any modifications to pipeline and
> route configuration; these will need to be updated manually.
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,23 +19,23 @@
"config": {
"sort-packages": true,
"platform": {
"php": "8.0.99"
"php": "8.1.99"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {},
"require": {
"php": "~8.0.0 || ~8.1.0 || ~8.2.0",
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
"ext-json": "*",
"symfony/console": "^2.8 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
},
"require-dev": {
"laminas/laminas-coding-standard": "~2.5.0",
"phpunit/phpunit": "^9.5.26",
"psalm/plugin-phpunit": "^0.18.0",
"vimeo/psalm": "^5.0.0"
"phpunit/phpunit": "^9.6.21",
"psalm/plugin-phpunit": "^0.19.0",
"vimeo/psalm": "^5.26.1"
},
"autoload": {
"psr-4": {
Expand Down
Loading

0 comments on commit 88accfa

Please sign in to comment.