Fully compatible with PHP:^8.1

2.x 2.5.0
Julien Rosset 2 years ago
parent ab99014b95
commit 2dd3b9137a

@ -2,12 +2,22 @@
"name": "jrosset/envreader",
"description": "Utility class for ENV file reading",
"keywords": [ ],
"type": "library",
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
},
"minimum-stability": "stable",
"require": {
"php": "^7.4 || ^8.0",
"jrosset/singleton": "^1.0",
"jrosset/collections": "^2.0"
"jrosset/singleton": "^1.5",
"jrosset/collections": "^2.3 || ^3.0"
},
"autoload": {
"psr-4": {

@ -8,6 +8,7 @@ use Exception;
use jrosset\Collections\IArrayCast;
use jrosset\Collections\InsensitiveCaseKeyCollection;
use jrosset\Collections\InsensitiveCaseKeyImmutableCollection;
use jrosset\Singleton\ISingleton;
use jrosset\Singleton\TSingleton;
use RangeException;
use UnexpectedValueException;
@ -17,7 +18,7 @@ use UnexpectedValueException;
*
* Overwrite {@see GenericConfig::initialProperties()} to set initial properties
*/
abstract class GenericConfig {
abstract class GenericConfig implements ISingleton {
use TSingleton;
/**

Loading…
Cancel
Save