Skip to content

Commit f0c039e

Browse files
Merge pull request laminas#240 from ghostwriter/feature/bump-laminas-coding-standard
Bump `laminas/laminas-coding-standard` to `^2.3.0`
2 parents 6f51bf5 + 2727483 commit f0c039e

File tree

388 files changed

+897
-160
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

388 files changed

+897
-160
lines changed

.github/workflows/auto-close.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Autocloser
2+
on: [issues, pull_request]
3+
jobs:
4+
autoclose:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- name: Autoclose new issues and PRs
8+
uses: roots/[email protected]
9+
with:
10+
repo-token: ${{ secrets.GITHUB_TOKEN }}
11+
issue-pattern: "^exact-string-will-never-match$"
12+
pr-pattern: "^exact-string-will-never-match$"
13+
issue-close-message: |
14+
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).
15+
If you have a security issue, please [follow our security reporting guidelines](https://getlaminas.org/security/).
16+
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)
17+
18+
pr-close-message: |
19+
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).
20+
If you have a security issue, please [follow our security reporting guidelines](https://getlaminas.org/security/).
21+
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)

.laminas-ci/phpunit.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222
</testsuite>
2323
</testsuites>
2424

25-
<listeners>
26-
<listener class="LaminasIntegrationTest\Db\IntegrationTestListener" file="./test/integration/IntegrationTestListener.php"/>
27-
</listeners>
25+
<extensions>
26+
<extension class="LaminasIntegrationTest\Db\IntegrationTestPHPUnitExtension" file="./test/integration/IntegrationTestPHPUnitExtension.php"/>
27+
</extensions>
2828

2929
<php>
3030
<!-- Integration Test Variables -->

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,14 @@
1818
>
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
21+
> 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/ea1ac8c8e2f00f90c6059b6bf60399bcf38bc653/meetings/minutes/2022-02-07-TSC-Minutes.md#is-laminas-db-abandoned).
22+
> If you have a security issue, please [follow our security reporting guidelines](https://getlaminas.org/security/).
23+
> 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)
24+
>
25+
> If you are looking for an actively maintained package alternative, we recommend:
26+
>
27+
> - [doctrine/dbal](https://github.com/doctrine/dbal)
28+
2129
`Laminas\Db` is a component that abstract the access to a Database using an object
2230
oriented API to build the queries. `Laminas\Db` consumes different storage adapters
2331
to access different database vendors such as MySQL, PostgreSQL, Oracle, IBM DB2,

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"config": {
1919
"sort-packages": true,
2020
"platform": {
21-
"php": "7.3.99"
21+
"php": "7.4.99"
2222
},
2323
"allow-plugins": {
2424
"dealerdirect/phpcodesniffer-composer-installer": true
@@ -31,14 +31,14 @@
3131
}
3232
},
3333
"require": {
34-
"php": "^7.3 || ~8.0.0 || ~8.1.0",
34+
"php": "^7.4 || ~8.0.0 || ~8.1.0",
3535
"laminas/laminas-stdlib": "^3.7.1"
3636
},
3737
"require-dev": {
38-
"laminas/laminas-coding-standard": "~2.2.1",
38+
"laminas/laminas-coding-standard": "^2.3.0",
3939
"laminas/laminas-eventmanager": "^3.4.0",
4040
"laminas/laminas-hydrator": "^3.2 || ^4.3",
41-
"laminas/laminas-servicemanager": "^3.7.0",
41+
"laminas/laminas-servicemanager": "^3.10.0",
4242
"phpunit/phpunit": "^9.5.19"
4343
},
4444
"suggest": {

0 commit comments

Comments
 (0)