Skip to content

Remove deprecations for symfony 6.4 & bump to v1.3.0 #19

Remove deprecations for symfony 6.4 & bump to v1.3.0

Remove deprecations for symfony 6.4 & bump to v1.3.0 #19

Workflow file for this run

name: PHP Composer
on: [push, pull_request]
jobs:
build:
name: PHP ${{ matrix.php-versions }} Test on ${{ matrix.operating-system }}
runs-on: ubuntu-18.04
strategy:
fail-fast: false
matrix:
operating-system: [ubuntu-latest]
php-versions: ['7.4', '8.0']
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup PHP, with composer and extensions
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
extensions: mbstring, xml, ctype, iconv, intl, pdo, pdo_mysql, dom, gd, json, soap, zip, bcmath
ini-values: post_max_size=256M, max_execution_time=600, memory_limit=4096M
- name: Install dependencies with composer
run: composer install --no-interaction --prefer-source
- name: Checks
run: |
vendor/bin/phpspec run -fpretty --verbose
composer analyse