From cef49eb36379161a8370cc9c66e0ff558852a4d2 Mon Sep 17 00:00:00 2001 From: Yuriy Bakhtin Date: Wed, 9 Oct 2024 11:02:56 +0200 Subject: [PATCH] Use PHP CS Fixer --- .github/workflows/php-cs-fixer.yml | 7 +++++++ docs/CHANGELOG.md | 4 ++++ module.json | 4 ++-- 3 files changed, 13 insertions(+), 2 deletions(-) create mode 100644 .github/workflows/php-cs-fixer.yml diff --git a/.github/workflows/php-cs-fixer.yml b/.github/workflows/php-cs-fixer.yml new file mode 100644 index 0000000..2d37e13 --- /dev/null +++ b/.github/workflows/php-cs-fixer.yml @@ -0,0 +1,7 @@ +name: PHP CS Fixer + +on: push + +jobs: + fixers: + uses: humhub/actions/.github/workflows/module-php-cs-fixer.yml@main diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 9814a73..6df09c8 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,6 +1,10 @@ Changelog ========= +1.0.1 (Unreleased) +------------------------ +- Enh #3: Use PHP CS Fixer + 1.0.0 (August 20, 2018) ------------------------ Initial release diff --git a/module.json b/module.json index fd47a6f..f13298a 100644 --- a/module.json +++ b/module.json @@ -5,9 +5,9 @@ "keywords": [ "api" ], - "version": "1.0.0", + "version": "1.0.1", "humhub": { "minVersion": "1.3" }, "screenshots": [] -} \ No newline at end of file +}