diff --git a/.github/workflows/code-style.yml b/.github/workflows/code-style.yml
new file mode 100644
index 0000000..e52b3aa
--- /dev/null
+++ b/.github/workflows/code-style.yml
@@ -0,0 +1,42 @@
+name: PHP-CS-Fixer
+
+on:
+ push:
+ branches: [ master, main ]
+ pull_request:
+ branches: [ master, main ]
+
+permissions:
+ contents: read
+
+jobs:
+ code-style:
+
+ runs-on: ubuntu-latest
+ permissions:
+ contents: write # for Git to git apply
+
+ steps:
+ - uses: actions/checkout@v3
+
+ - name: Setup PHP
+ uses: shivammathur/setup-php@v2
+ with:
+ php-version: '8.1'
+ extensions: gd, intl, pdo_mysql
+ coverage: none # disable xdebug, pcov
+
+ # install dependencies from composer.json
+ - name: Install test dependencies
+ env:
+ COMPOSER: composer.json
+ run: composer install --prefer-dist --no-progress
+
+ # run php-cs-fixer, fix code styles
+ - name: Run PHP CS Fixer
+ run: composer cs-fix
+
+ # commit and push fixed files
+ - uses: stefanzweifel/git-auto-commit-action@v4
+ with:
+ commit_message: Apply php-cs-fixer changes
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..925011d
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,3 @@
+/composer.lock
+/.php-cs-fixer.cache
+/vendor
diff --git a/.php-cs-fixer.dist.php b/.php-cs-fixer.dist.php
new file mode 100644
index 0000000..72be593
--- /dev/null
+++ b/.php-cs-fixer.dist.php
@@ -0,0 +1,11 @@
+in(__DIR__)
+;
+
+return (new Redaxo\PhpCsFixerConfig\Config())
+ ->setFinder($finder)
+ ;
diff --git a/assets/jetzt-beauftragen.svg b/assets/jetzt-beauftragen.svg
new file mode 100644
index 0000000..59ac24a
--- /dev/null
+++ b/assets/jetzt-beauftragen.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/assets/jetzt-spenden.svg b/assets/jetzt-spenden.svg
deleted file mode 100644
index 917998e..0000000
--- a/assets/jetzt-spenden.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..5855596
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,10 @@
+{
+ "require-dev": {
+ "redaxo/php-cs-fixer-config": "^2.0",
+ "friendsofphp/php-cs-fixer": "^3.14"
+ },
+ "scripts": {
+ "cs-dry": "php-cs-fixer fix -v --ansi --dry-run --config=.php-cs-fixer.dist.php",
+ "cs-fix": "php-cs-fixer fix -v --ansi --config=.php-cs-fixer.dist.php"
+ }
+}
diff --git a/fragments/backend_css.php b/fragments/backend_css.php
index f9b02c0..7484090 100644
--- a/fragments/backend_css.php
+++ b/fragments/backend_css.php
@@ -1,35 +1,35 @@