Skip to content

[Composer]: Bump friendsofphp/php-cs-fixer from 3.57.2 to 3.60.0 in /laravel #891

[Composer]: Bump friendsofphp/php-cs-fixer from 3.57.2 to 3.60.0 in /laravel

[Composer]: Bump friendsofphp/php-cs-fixer from 3.57.2 to 3.60.0 in /laravel #891

Workflow file for this run

name: "PHP-CS-Fixer"
on:
push:
branches:
- main
pull_request:
schedule:
- cron: '0 15 * * 2'
jobs:
code-style:
strategy:
fail-fast: false
matrix:
php_versions: [
'8.3',
]
name: PHP ${{ matrix.php_versions }}
runs-on: ubuntu-latest
steps:
- name: checkout repository
uses: actions/checkout@v4
- name: install php ${{ matrix.php_versions }} with extensions
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php_versions }}
extensions: json ctype openssl ssh2 gd pcntl
coverage: none
tools: none
- name: install dependencies
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
working-directory: laravel
- name: run php-cs-fixer
run: ./vendor/bin/php-cs-fixer fix --config .php-cs-fixer.php --diff --dry-run
working-directory: laravel