Skip to content

Releases: nimayneb/advini

New Interface methods

30 Jan 12:49
Compare
Choose a tag to compare

You can now set your constants with:

use JBR\Advini\Advini;

$constants = [
    'password' => md5('heavy')
];

$ini = new Advini();
$ini->setConstants($constants);

Refactoring

18 Jan 21:05
Compare
Choose a tag to compare

Small refactoring.

Composer update

17 Jan 23:03
Compare
Choose a tag to compare
v1.1.2

update

Support for Charsets and Key imports

17 Jan 22:13
Compare
Choose a tag to compare

You can define a charset with "Advini::getFromFile":

PHP:

$ini = new Advini();
$setup = $ini->getFromFile("setup.ini", "UTF-8");

setup.ini:

@charset = ISO-8859-1
name = Max Mustermüller

First Release

17 Jan 20:02
Compare
Choose a tag to compare
v1.0.0

first commit