From d681e64c5ae85a7087ca5c55b50354916ed50ad4 Mon Sep 17 00:00:00 2001 From: serhiidonii <158484424+serhiidonii@users.noreply.github.com> Date: Thu, 2 Jan 2025 15:48:17 +0200 Subject: [PATCH] feat: add symfony 70 support --- .github/workflows/build.yml | 8 ++++++++ docker-compose.yaml | 13 +++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 docker-compose.yaml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 48d259d..d9a5374 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -32,6 +32,14 @@ jobs: rm -rf composer.lock composer require symfony/console:${{ matrix.symfony }} symfony/dependency-injection:${{ matrix.symfony }} symfony/framework-bundle:${{ matrix.symfony }} symfony/http-kernel:${{ matrix.symfony }} symfony/runtime:${{ matrix.symfony }} + - name: Show installed packages + run: composer show + + - name: Show php info + run: | + php -v + php -m + - name: Cache dependencies uses: actions/cache@v3 with: diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..ba37227 --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,13 @@ +services: + swoole-8.2: + image: phpswoole/swoole:php8.2 + volumes: + - ./:/app + swoole-8.3: + image: phpswoole/swoole:php8.3 + volumes: + - ./:/app + swoole-8.4: + image: phpswoole/swoole:php8.4 + volumes: + - ./:/app