File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 14
14
strategy :
15
15
fail-fast : false
16
16
matrix :
17
- php : ['8.1', '8.2', '8.3']
18
- symfony : ['5.4.*', '6.4.*', '7.0 .*']
17
+ php : ['8.1', '8.2', '8.3', '8.4' ]
18
+ symfony : ['5.4.*', '6.4.*', '7.1.*', '7.2 .*']
19
19
doctrine-orm : ['^2.14', '^3.0']
20
20
composer-flags : ['--prefer-stable']
21
21
can-fail : [false]
27
27
can-fail : false
28
28
exclude :
29
29
- php : " 8.1"
30
- symfony : " 7.0.*"
30
+ symfony : " 7.1.*"
31
+ - php : " 8.1"
32
+ symfony : " 7.2.*"
31
33
32
34
name : " PHP ${{ matrix.php }} - Doctrine ${{ matrix.doctrine-orm }} - Symfony ${{ matrix.symfony }}${{ matrix.composer-flags != '' && format(' - Composer {0}', matrix.composer-flags) || '' }}"
33
35
39
41
uses : " actions/checkout@v4"
40
42
41
43
- name : " build the PHP environment"
42
- run : " dev/bin/docker-compose build --build-arg PHP_VERSION=${{ matrix.php }} --build-arg XDEBUG_VERSION='3.3.1 ' php"
44
+ run : " dev/bin/docker-compose build --build-arg PHP_VERSION=${{ matrix.php }} --build-arg XDEBUG_VERSION='3.4.0 ' php"
43
45
44
46
- name : " require specific Doctrine ORM version"
45
47
run : " dev/bin/php composer require --ansi ${{ matrix.composer-flags }} --no-install doctrine/orm:${{ matrix.doctrine-orm }}"
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ LABEL maintainer="Petar Obradović <petar.obradovic@trikoder.net>"
7
7
RUN mkdir -p /app/bin
8
8
ENV PATH /app/bin:$PATH
9
9
10
- ARG XDEBUG_VERSION=3.3.1
10
+ ARG XDEBUG_VERSION=3.4.0
11
11
12
12
# Install needed core and PECL extensions
13
13
RUN apk add --update --no-cache --virtual .build-deps \
You can’t perform that action at this time.
0 commit comments