From bcf4a26cd1b8d5f610a1d0027511aa83cf65c59b Mon Sep 17 00:00:00 2001 From: Jean-Christian Denis Date: Sat, 13 May 2023 14:48:31 +0200 Subject: [PATCH] release 2023.05.13 --- CHANGELOG.md | 6 ++++++ _define.php | 2 +- dcstore.xml | 4 ++-- src/Settings.php | 2 +- 4 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 899b6bd..87c1d31 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +2023.05.13 +- require dotclea r2.26 +- require php 8.1 +- use define php_min +- fix dump() method + 2023.04.22 - require dotclea r2.26 - require php 8.1 diff --git a/_define.php b/_define.php index 6d84b37..6e945a8 100644 --- a/_define.php +++ b/_define.php @@ -18,7 +18,7 @@ $this->registerModule( 'License bootstrap', 'Add license to your plugins and themes', 'Jean-Christian Denis', - '2023.04.22', + '2023.05.13', [ 'requires' => [ ['php', '8.1'], diff --git a/dcstore.xml b/dcstore.xml index 27d0d33..795975f 100644 --- a/dcstore.xml +++ b/dcstore.xml @@ -2,10 +2,10 @@ License bootstrap - 2023.04.22 + 2023.05.13 Jean-Christian Denis Add license to your plugins and themes - https://github.com/JcDenis/licenseBootstrap/releases/download/v2023.04.22/plugin-licenseBootstrap.zip + https://github.com/JcDenis/licenseBootstrap/releases/download/v2023.05.13/plugin-licenseBootstrap.zip 2.26 https://plugins.dotaddict.org/dc2/details/licenseBootstrap https://github.com/JcDenis/licenseBootstrap diff --git a/src/Settings.php b/src/Settings.php index c0ab78f..fa5974a 100644 --- a/src/Settings.php +++ b/src/Settings.php @@ -107,6 +107,6 @@ class Settings */ public function listSettings(): array { - return array_diff_key(get_object_vars($this), ['settings'=>'']); + return array_diff_key(get_object_vars($this), ['settings' => '']); } }