Skip to content

Commit 4bf5023

Browse files
authored
Merge pull request #25 from gsteel/general-maintenance
General maintenance
2 parents 4d52905 + 7056fc1 commit 4bf5023

16 files changed

+496
-484
lines changed

.coveralls.yml

-2
This file was deleted.

.gitattributes

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1-
/.coveralls.yml export-ignore
21
/.gitattributes export-ignore
32
/.github/ export-ignore
43
/.gitignore export-ignore
5-
/.travis.yml export-ignore
64
/docs/ export-ignore
75
/mkdocs.yml export-ignore
86
/phpcs.xml export-ignore
7+
/psalm.xml export-ignore
8+
/psalm-baseline.xml export-ignore
99
/phpunit.xml.dist export-ignore
1010
/test/ export-ignore
11+
/renovate.json export-ignore
12+
/.laminas-ci.json export-ignore

.gitignore

-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
/.phpcs-cache
22
/.phpunit.result.cache
3-
/clover.xml
4-
/coveralls-upload.json
53
/docs/html/
64
/laminas-mkdoc-theme.tgz
75
/laminas-mkdoc-theme/

.laminas-ci.json

-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,2 @@
11
{
2-
"ignore_php_platform_requirements": {
3-
"8.1": true
4-
}
52
}

README.md

+8-7
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,22 @@
11
# mezzio-session-cache
22

33
[![Build Status](https://github.com/mezzio/mezzio-session-cache/workflows/Continuous%20Integration/badge.svg)](https://github.com/mezzio/mezzio-session-cache/actions?query=workflow%3A"Continuous+Integration")
4+
[![Type Coverage](https://shepherd.dev/github/mezzio/mezzio-session-cache/coverage.svg)](https://shepherd.dev/github/mezzio/mezzio-session-cache)
45

56
> ## 🇷🇺 Русским гражданам
6-
>
7+
>
78
> Мы, участники Laminas, родились и живем в разных странах. У многих из нас есть друзья, родственники и коллеги как в России, так и в Украине. Некоторые из нас родились в России. Некоторые из нас живут в России. У некоторых бабушки и дедушки сражались с фашистами во Второй мировой войне. Здесь никто не поддерживает фашизм.
8-
>
9+
>
910
> У одного из нас есть украинская родственница, которая спаслась из дома вместе с сыном. Поезд задержался из-за бомбежки на дороге впереди. У нас есть друзья, которые прячутся в бомбоубежищах. Мы с тревогой ждем весточки от них после воздушных налетов, которые беспорядочно наносят удары и попадают по больницам, школам, детским садам и домам. Мы не берем это из каких-либо СМИ. Мы наблюдаем это напрямую.
10-
>
11+
>
1112
> Вы доверяете нам достаточно, чтоб использовать наши программы, и мы просим вас довериться нам вновь. Мы нуждаемся в помощи. Выходите и протестуйте против этой бесполезной войны. Остановите кровопролитие. Скажите "Нет войне!"
12-
>
13+
>
1314
> ## 🇺🇸 To Citizens of Russia
14-
>
15+
>
1516
> 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-
>
17+
>
1718
> 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-
>
19+
>
1920
> 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!"
2021
2122
This library provides a [PSR-6](https://www.php-fig.org/psr/psr-6/) session

composer.json

+7-4
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@
2222
"sort-packages": true,
2323
"platform": {
2424
"php": "7.3.99"
25+
},
26+
"allow-plugins": {
27+
"dealerdirect/phpcodesniffer-composer-installer": true
2528
}
2629
},
2730
"extra": {
@@ -37,11 +40,11 @@
3740
"psr/container": "^1.0 || ^2.0 || ^3.0"
3841
},
3942
"require-dev": {
40-
"laminas/laminas-coding-standard": "~2.2.0",
41-
"laminas/laminas-diactoros": "^2.0",
43+
"laminas/laminas-coding-standard": "~2.3.0",
44+
"laminas/laminas-diactoros": "^2.13.0",
4245
"phpunit/phpunit": "^9.5",
43-
"psalm/plugin-phpunit": "^0.16.1",
44-
"vimeo/psalm": "^4.10"
46+
"psalm/plugin-phpunit": "^0.17.0",
47+
"vimeo/psalm": "^4.24.0"
4548
},
4649
"suggest": {
4750
"psr/cache-implementation": "This package requires a PSR-6 CacheItemPoolInterface implementation."

0 commit comments

Comments
 (0)