Skip to content

Use str_increment() to fix PHP 8.5 deprecation #333

Use str_increment() to fix PHP 8.5 deprecation

Use str_increment() to fix PHP 8.5 deprecation #333

Workflow file for this run

name: Continuous Integration
on:
- push
- pull_request
jobs:
tests:
strategy:
matrix:
include:
- operating-system: 'ubuntu-latest'
php-version: '7.1'
- operating-system: 'ubuntu-latest'
php-version: '7.2'
- operating-system: 'ubuntu-latest'
php-version: '7.3'
- operating-system: 'ubuntu-latest'
php-version: '7.4'
- operating-system: 'ubuntu-latest'
php-version: '8.0'
- operating-system: 'ubuntu-latest'
php-version: '8.1'
- operating-system: 'ubuntu-latest'
php-version: '8.2'
- operating-system: 'ubuntu-latest'
php-version: '8.3'
- operating-system: 'ubuntu-latest'
php-version: '8.4'
- operating-system: 'windows-latest'
php-version: '8.3'
job-description: 'on Windows'
- operating-system: 'macos-latest'
php-version: '8.3'
job-description: 'on macOS'
name: PHP ${{ matrix.php-version }} ${{ matrix.job-description }}
runs-on: ${{ matrix.operating-system }}
steps:
- name: Set git to use LF
run: |
git config --global core.autocrlf false
git config --global core.eol lf
- name: Checkout code
uses: actions/checkout@v5
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
- name: Install dependencies
env:
COMPOSER_ROOT_VERSION: 2.x-dev
run: |
composer update --optimize-autoloader --no-interaction --no-progress
composer info -D
- name: Run tests
env:
PHP_CS_FIXER_IGNORE_ENV: 1
run: vendor/bin/phpunit ${{ matrix.phpunit-flags }}
- name: Run style fixer
env:
PHP_CS_FIXER_IGNORE_ENV: 1
run: vendor/bin/php-cs-fixer --diff --dry-run -v fix