Skip to content

Commit

Permalink
Merge pull request #38 from Xerkus/feature/php83
Browse files Browse the repository at this point in the history
Add php 8.3
  • Loading branch information
Xerkus committed Dec 5, 2023
2 parents 4c758a4 + d92252f commit 15ee7bb
Show file tree
Hide file tree
Showing 8 changed files with 273 additions and 268 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/docs-build.yml
Expand Up @@ -3,8 +3,7 @@ name: docs-build
on:
release:
types: [published]
repository_dispatch:
types: docs-build
workflow_dispatch:

jobs:
build-deploy:
Expand All @@ -13,5 +12,5 @@ jobs:
- name: Build Docs
uses: laminas/documentation-theme/github-actions/docs@master
env:
DOCS_DEPLOY_KEY: ${{ secrets.DOCS_DEPLOY_KEY }}
"GITHUB_TOKEN": ${{ secrets.GITHUB_TOKEN }}
DEPLOY_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4 changes: 3 additions & 1 deletion .gitignore
@@ -1,7 +1,9 @@
/.phpcs-cache
/.phpunit.cache
/.psalm-cache/
/clover.xml
/docs/html/
/laminas-mkdoc-theme.tgz
/laminas-mkdoc-theme/
/phpunit.xml
/vendor/
/.phpcs-cache
3 changes: 0 additions & 3 deletions .laminas-ci.json
@@ -1,5 +1,2 @@
{
"ignore_php_platform_requirements": {
"8.2": true
}
}
26 changes: 14 additions & 12 deletions README.md
@@ -1,21 +1,23 @@
# laminas-config-aggregator-parameters

[![Build Status](https://github.com/laminas/laminas-config-aggregator-parameters/workflows/Continuous%20Integration/badge.svg)](https://github.com/laminas/laminas-config-aggregator-parameters/actions?query=workflow%3A"Continuous+Integration")
[![Build Status](https://github.com/laminas/laminas-config-aggregator-parameters/actions/workflows/continuous-integration.yml/badge.svg)](https://github.com/laminas/laminas-config-aggregator-parameters/actions/workflows/continuous-integration.yml)
[![type-coverage](https://shepherd.dev/github/laminas/laminas-config-aggregator-parameters/coverage.svg)](https://shepherd.dev/github/laminas/laminas-config-aggregator-parameters)
[![Psalm level](https://shepherd.dev/github/laminas/laminas-config-aggregator-parameters/level.svg)](https://shepherd.dev/github/laminas/laminas-config-aggregator-parameters)

> ## 🇷🇺 Русским гражданам
>
>
> Мы, участники 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!"
Provides an extension to the `laminas/laminas-config-aggregator` to allow parameters within your configuration.
Expand Down Expand Up @@ -50,7 +52,7 @@ $aggregator = new ConfigAggregator(
'foo' => 'bar',
'bar' => [
'baz' => 'qoo',
'quux' => '%foo%',
'quux' => '%foo%',
],
]),
]
Expand Down Expand Up @@ -96,6 +98,6 @@ Browse the documentation online at [https://docs.laminas.dev/laminas-config-aggr

## Support

* Issues: [https://github.com/laminas/laminas-config-aggregator-parameters/issues](https://github.com/laminas/laminas-config-aggregator-parameters/issues)
* Chat: [https://laminas.dev/chat](https://laminas.dev/chat)
* Forum: [https://discourse.laminas.dev](https://discourse.laminas.dev)
- Issues: [https://github.com/laminas/laminas-config-aggregator-parameters/issues](https://github.com/laminas/laminas-config-aggregator-parameters/issues)
- Chat: [https://laminas.dev/chat](https://laminas.dev/chat)
- Forum: [https://discourse.laminas.dev](https://discourse.laminas.dev)
4 changes: 2 additions & 2 deletions composer.json
Expand Up @@ -23,7 +23,7 @@
"extra": {
},
"require": {
"php": "~8.1.0 || ~8.2.0",
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"laminas/laminas-config-aggregator": "^1.13",
"laminas/laminas-stdlib": "^3.17",
"symfony/dependency-injection": "^5.4 || ^6.2.8"
Expand All @@ -33,7 +33,7 @@
"laminas/laminas-config": "^3.8.0",
"phpunit/phpunit": "^10.1.2",
"psalm/plugin-phpunit": "^0.18.4",
"vimeo/psalm": "^5.9"
"vimeo/psalm": "^5.17"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 15ee7bb

Please sign in to comment.