Skip to content

Commit c532faa

Browse files
committed
⬆️ upgraded to php 8
🎨 psr12 Signed-off-by: bnomei <[email protected]>
1 parent 6ff880d commit c532faa

File tree

19 files changed

+905
-923
lines changed

19 files changed

+905
-923
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Setup PHP
2020
uses: shivammathur/setup-php@v2
2121
with:
22-
php-version: '7.3'
22+
php-version: '8.0'
2323
tools: composer
2424

2525
- name: Install

.php-cs-fixer.dist.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
return (new PhpCsFixer\Config())
1515
->setRules([
16-
'@PSR2' => true,
16+
'@PSR12' => true,
1717
])
1818
->setFinder($finder)
1919
;

composer.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "bnomei/kirby3-feed",
33
"type": "kirby-plugin",
4-
"version": "1.5.2",
4+
"version": "1.5.3",
55
"description": "Generate a RSS/JSON/Sitemap-Feed from a Pages-Collection",
66
"license": "MIT",
77
"authors": [
@@ -27,10 +27,13 @@
2727
},
2828
"config": {
2929
"optimize-autoloader": true,
30-
"sort-packages": true
30+
"sort-packages": true,
31+
"allow-plugins": {
32+
"getkirby/composer-installer": true
33+
}
3134
},
3235
"require": {
33-
"php": ">=7.3.0",
36+
"php": ">=8.0",
3437
"getkirby/composer-installer": "^1.2"
3538
},
3639
"require-dev": {

0 commit comments

Comments
 (0)