Skip to content

Commit 9e4cae1

Browse files
authored
Merge pull request #23 from Xerkus/feature/php83
Add php 8.3 and drop php 8.0
2 parents 196a4d1 + ff7480e commit 9e4cae1

7 files changed

+332
-675
lines changed

.github/workflows/docs-build.yml

+5-6
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
name: docs-build
22

33
on:
4-
push:
5-
branches:
6-
- master
7-
repository_dispatch:
8-
types: docs-build
4+
release:
5+
types: [published]
6+
workflow_dispatch:
97

108
jobs:
119
build-deploy:
@@ -14,4 +12,5 @@ jobs:
1412
- name: Build Docs
1513
uses: laminas/documentation-theme/github-actions/docs@master
1614
env:
17-
DOCS_DEPLOY_KEY: ${{ secrets.DOCS_DEPLOY_KEY }}
15+
DEPLOY_TOKEN: ${{ secrets.GITHUB_TOKEN }}
16+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.laminas-ci.json

-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,5 @@
33
"gd"
44
],
55
"ignore_php_platform_requirements": {
6-
"8.2": true
76
}
87
}

README.md

+10-9
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,23 @@
11
# laminas-barcode
22

33
> ## 🇷🇺 Русским гражданам
4-
>
4+
>
55
> Мы, участники Laminas, родились и живем в разных странах. У многих из нас есть друзья, родственники и коллеги как в России, так и в Украине. Некоторые из нас родились в России. Некоторые из нас живут в России. У некоторых бабушки и дедушки сражались с фашистами во Второй мировой войне. Здесь никто не поддерживает фашизм.
6-
>
6+
>
77
> У одного из нас есть украинская родственница, которая спаслась из дома вместе с сыном. Поезд задержался из-за бомбежки на дороге впереди. У нас есть друзья, которые прячутся в бомбоубежищах. Мы с тревогой ждем весточки от них после воздушных налетов, которые беспорядочно наносят удары и попадают по больницам, школам, детским садам и домам. Мы не берем это из каких-либо СМИ. Мы наблюдаем это напрямую.
8-
>
8+
>
99
> Вы доверяете нам достаточно, чтоб использовать наши программы, и мы просим вас довериться нам вновь. Мы нуждаемся в помощи. Выходите и протестуйте против этой бесполезной войны. Остановите кровопролитие. Скажите "Нет войне!"
10-
>
10+
>
1111
> ## 🇺🇸 To Citizens of Russia
12-
>
12+
>
1313
> 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.
14-
>
14+
>
1515
> 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.
16-
>
16+
>
1717
> 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!"
1818
19-
19+
> ## Maintenance mode
20+
>
2021
> This package is considered feature-complete, and is now in **security-only** maintenance mode, following a [decision by the Technical Steering Committee](https://github.com/laminas/technical-steering-committee/blob/2b55453e172a1b8c9c4c212be7cf7e7a58b9352c/meetings/minutes/2020-08-03-TSC-Minutes.md#vote-on-components-to-mark-as-security-only).
2122
> If you have a security issue, please [follow our security reporting guidelines](https://getlaminas.org/security/).
2223
> If you wish to take on the role of maintainer, please [nominate yourself](https://github.com/laminas/technical-steering-committee/issues/new?assignees=&labels=Nomination&template=Maintainer_Nomination.md&title=%5BNOMINATION%5D%5BMAINTAINER%5D%3A+%7Bname+of+person+being+nominated%7D)
@@ -26,7 +27,7 @@
2627
> - [tecnickcom/tcpdf](https://packagist.org/packages/tecnickcom/tcpdf)
2728
> - [picqer/php-barcode-generator](https://packagist.org/packages/picqer/php-barcode-generator)
2829
29-
[![Build Status](https://github.com/laminas/laminas-barcode/workflows/Continuous%20Integration/badge.svg)](https://github.com/laminas/laminas-barcode/actions?query=workflow%3A"Continuous+Integration")
30+
[![Build Status](https://github.com/laminas/laminas-barcode/actions/workflows/continuous-integration.yml/badge.svg)](https://github.com/laminas/laminas-barcode/actions/workflows/continuous-integration.yml)
3031

3132
`Laminas\Barcode` provides a generic way to generate barcodes. The `Laminas\Barcode`
3233
component is divided into two subcomponents: barcode objects and renderers.

composer.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -18,20 +18,20 @@
1818
"config": {
1919
"sort-packages": true,
2020
"platform": {
21-
"php": "8.0.99"
21+
"php": "8.1.99"
2222
},
2323
"allow-plugins": {
2424
"dealerdirect/phpcodesniffer-composer-installer": true
2525
}
2626
},
2727
"require": {
28-
"php": "~8.0.0 || ~8.1.0 || ~8.2.0",
29-
"laminas/laminas-servicemanager": "^3.10.0",
28+
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
29+
"laminas/laminas-servicemanager": "^3.22",
3030
"laminas/laminas-stdlib": "^3.6.0",
3131
"laminas/laminas-validator": "^2.15.1"
3232
},
3333
"require-dev": {
34-
"laminas/laminas-coding-standard": "~2.3.0",
34+
"laminas/laminas-coding-standard": "~2.5.0",
3535
"laminas/laminas-config": "^3.7.0",
3636
"phpunit/phpunit": "^9.5"
3737
},

0 commit comments

Comments
 (0)