Skip to content

add support for php 8.3 #5

add support for php 8.3

add support for php 8.3 #5

Workflow file for this run

name: fix-code-style using php-cs-fixer
on:
pull_request:
types:
- closed
branches:
- main
jobs:
php-cs-fixer:
if: github.event.pull_request.merged == true
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
- name: Install Composer
run: composer install
- name: Run php-cs-fixer
run: ./vendor/bin/php-cs-fixer fix lib
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Apply php-cs-fixer formatting