Skip to content

Latest commit

 

History

History
35 lines (22 loc) · 515 Bytes

readme.md

File metadata and controls

35 lines (22 loc) · 515 Bytes

Configer

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.

License

MIT