Skip to content

GH-126 Make the DummyType regsitration work with doctrine/dbal:3|4 #168

GH-126 Make the DummyType regsitration work with doctrine/dbal:3|4

GH-126 Make the DummyType regsitration work with doctrine/dbal:3|4 #168

Workflow file for this run

name: AllDependenciesDeclared
on:
push:
branches:
- master
pull_request:
env:
PHP_VERSION: 8.1
jobs:
composer-require-checker:
name: Check missing composer requirements
runs-on: ubuntu-22.04
steps:
- name: Configure PHP version
uses: shivammathur/setup-php@v2
with:
php-version: ${{ env.PHP_VERSION }}
coverage: none
tools: composer:v2
- uses: actions/checkout@v6
- name: Cache Composer Dependencies
uses: actions/cache@v5
with:
path: vendor/
key: composer-${{ env.PHP_VERSION }}-${{ hashFiles('composer.*') }}
restore-keys: |
composer-${{ env.PHP_VERSION }}-${{ github.ref }}
composer-${{ env.PHP_VERSION }}-
- run: |
composer update --no-interaction --no-scripts --no-progress
composer show
- name: ComposerRequireChecker
uses: docker://ghcr.io/webfactory/composer-require-checker:4.18.0
with:
args: --config-file=.composer-require-checker.json