Skip to content

Commit d502b82

Browse files
committed
Issue #67: Implement MariaDB/PostgreSQL connection
Signed-off-by: alexmerlin <alex.merlin.1985@gmail.com>
1 parent c036128 commit d502b82

File tree

6 files changed

+8
-4
lines changed

6 files changed

+8
-4
lines changed

.github/workflows/codecov.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ jobs:
1818
- "8.2"
1919
- "8.3"
2020
- "8.4"
21+
- "8.5"
2122

2223
steps:
2324
- name: Checkout

.github/workflows/qodana_code_quality.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
checks: write
1616
strategy:
1717
matrix:
18-
php-versions: [ '8.2', '8.3', '8.4' ]
18+
php-versions: [ '8.2', '8.3', '8.4', '8.5' ]
1919
steps:
2020
- uses: actions/checkout@v6
2121
with:

.github/workflows/static-analysis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ jobs:
1818
- "8.2"
1919
- "8.3"
2020
- "8.4"
21+
- "8.5"
2122

2223
steps:
2324
- name: Checkout

.laminas-ci.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
"--no-scripts"
44
],
55
"extensions": [
6-
"redis",
7-
"swoole"
6+
"redis"
87
],
98
"ignore_php_platform_requirements": {
109
}

.laminas-ci/pre-run.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
JOB=$3
22
PHP_VERSION=$(echo "${JOB}" | jq -r '.php')
3+
4+
apt update
5+
apt install -y "php${PHP_VERSION}-swoole"

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
}
4444
},
4545
"require": {
46-
"php": "~8.2.0 || ~8.3.0 || ~8.4.0",
46+
"php": "~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0",
4747
"ext-redis": "*",
4848
"dotkernel/dot-cache": "^4.4",
4949
"dotkernel/dot-cli": "^3.10",

0 commit comments

Comments
 (0)