Skip to content

Commit 992a34c

Browse files
authored
Merge pull request #16 from PcComponentes/feature/dbal-4-support
feat: add dbal 4 support
2 parents fe89503 + ef11b38 commit 992a34c

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
FROM php:8.0-cli-alpine3.14
1+
FROM php:8.4-cli-alpine3.22
22

33
RUN apk update && \
44
apk add --no-cache \
55
libzip-dev \
6+
git \
67
openssl-dev && \
78
docker-php-ext-install -j$(nproc) \
89
zip

composer.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,16 @@
1717
"require": {
1818
"ext-pdo": "*",
1919
"ext-json": "*",
20-
"php": "^8.0",
20+
"php": "^8.2",
2121
"pccomponentes/ddd": "^4.0",
22-
"doctrine/dbal": "^3.0"
22+
"doctrine/dbal": "^3.0 || ^4.0"
2323
},
2424
"require-dev": {
2525
"pccomponentes/coding-standard": "^1.1"
26+
},
27+
"config": {
28+
"allow-plugins": {
29+
"dealerdirect/phpcodesniffer-composer-installer": true
30+
}
2631
}
2732
}

docker-compose.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
version: '3.7'
2-
31
services:
42
php:
53
build: .

0 commit comments

Comments
 (0)