Skip to content

Commit 954267e

Browse files
committed
⬆️ upgraded dependencies
closes #17 thanks @bvdputte Signed-off-by: bnomei <[email protected]>
1 parent 21877fb commit 954267e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+1676
-1571
lines changed

.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
;

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
language: php
2-
php: 7.3
2+
php: 8.0
33
matrix:
44
fast_finish: true
55
install: composer install --no-interaction

classes/DotEnv.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
use Dotenv\Exception\InvalidPathException;
88
use Kirby\Toolkit\A;
99
use Kirby\Toolkit\F;
10+
1011
use function getenv;
1112
use function option;
1213

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-dotenv",
33
"type": "kirby-plugin",
4-
"version": "2.0.4",
4+
"version": "2.1.0",
55
"description": "Kirby 3 Plugin for environment variables from .env",
66
"license": "MIT",
77
"authors": [
@@ -24,10 +24,13 @@
2424
}
2525
},
2626
"config": {
27-
"optimize-autoloader": true
27+
"optimize-autoloader": true,
28+
"allow-plugins": {
29+
"getkirby/composer-installer": true
30+
}
2831
},
2932
"require": {
30-
"php": ">=7.3.0",
33+
"php": ">=8.0",
3134
"getkirby/composer-installer": "^1.1",
3235
"vlucas/phpdotenv": "^5.3"
3336
},

0 commit comments

Comments
 (0)