piotrpress / configer
This library loads/saves php array from/to a configuration file.
Installs: 326
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
pkg:composer/piotrpress/configer
Requires
- php: >=8.0
README
This library loads/saves php array from/to a configuration file.
Installation
$ composer require piotrpress/configer
Usage
require __DIR__ . '/vendor/autoload.php'; use PiotrPress\Configer; $config = new Configer( '.config', [ 'key' => 'value' ] ); echo $config[ 'key' ]; $config[ 'key' ] = 'new_value'; $config->save();
Requirements
- Branch
2.x
supports PHP >=8.0
version. - Branch
1.x
supports PHP ^7.4
version.