Skip to content

Update composer.json #7

Update composer.json

Update composer.json #7

Workflow file for this run

name: php
on:
push:
jobs:
phpunit:
runs-on: ubuntu-latest
strategy:
matrix:
php: [7.4,8.0,8.1]
dependency-version: [prefer-stable]
name: PHP ${{ matrix.php }} - ${{ matrix.dependency-version }}
steps:
- name: Checkout code
uses: actions/checkout@v1
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
- name: Install dependencies
run: composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction --no-suggest