malc0mn / Toml

A PHP parser for TOML

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

TOML parser for PHP

A PHP parser for TOML compatible with TOML v0.4.0.

Build Status Latest Stable Version Total Downloads

Support:

Gitter

Installation

Use Composer to install Yosyfmony Toml package:

Add the following to your composer.json and run composer update.

"require": {
    "yosymfony/toml": "0.4.x-dev"
}

More informations about the package on Packagist.

Usage

You can use this package to parse TOML string inline or from a file with only one method:

use Yosymfony\Toml\Toml;

$array = Toml::Parse('key = [1,2,3]');

print_r($array);

From a file:

use Yosymfony\Toml\Toml;

$array = Toml::Parse('example.toml');

print_r($array);

TomlBuilder

You can create inline TOML string with TomlBuilder. TomlBuilder uses Fluent interface for more readable code:

    use Yosymfony\Toml\TomlBuilder;
    
    $tb = new TomlBuilder();

    $result = $tb->addComment('Toml file')
        ->addTable('data.string')
        ->addValue('name', "Toml", 'This is your name')
        ->addValue('newline', "This string has a \n new line character.")
        ->addValue('winPath', "C:\\Users\\nodejs\\templates")
        ->addValue('literal', '@<\i\c*\s*>') // literals starts with '@'.
        ->addValue('unicode', 'unicode character: ' . json_decode('"\u03B4"'))

        ->addTable('data.bool')
        ->addValue('t', true)
        ->addValue('f', false)

        ->addTable('data.integer')
        ->addValue('positive', 25, 'Comment inline.')
        ->addValue('negative', -25)

        ->addTable('data.float')
        ->addValue('positive', 25.25)
        ->addValue('negative', -25.25)

        ->addTable('data.datetime')->
        ->addValue('datetime', new \Datetime())

        ->addComment('Related to arrays')
        
        ->addTable('data.array')
        ->addValue('simple', array(1,2,3))
        ->addValue('multiple', array( 
            array(1,2), 
            array('abc', 'def'), 
            array(1.1, 1.2), 
            array(true, false), 
            array( new \Datetime()) ))

        ->addComment('Array of tables')
        
        ->addArrayTables('fruit')                            // Row
            ->addValue('name', 'apple')
            ->addArrayTables('fruit.variety')
                ->addValue('name', 'red delicious')
            ->addArrayTables('fruit.variety')
                ->addValue('name', 'granny smith')
        ->addArrayTables('fruit')                            // Row
            ->addValue('name', 'banana')
            ->addArrayTables('fruit.variety')
                ->addValue('name', 'platain')

        ->getTomlString();    // Generate the TOML string

The result of this example:

#Toml file

[data.string]
name = "Toml" #This is your name
newline = "This string has a \n new line character."
winPath = "C:\\Users\\nodejs\\templates"
literal = '<\i\c*\s*>'
unicode = "unicode character: δ"

[data.bool]
t = true
f = false

[data.integer]
positive = 25 #Comment inline.
negative = -25

[data.float]
positive = 25.25
negative = -25.25

[data.datetime]
datetime = 2013-06-10T21:12:48Z

#Related to arrays

[data.array]
simple = [1, 2, 3]
multiple = [[1, 2], ["abc", "def"], [1.1, 1.2], [true, false], [2013-06-10T21:12:48Z]]

# Array of tables

[[fruit]]
    name = "apple"

    [[fruit.variety]]
        name = "red delicious"

    [[fruit.variety]]
        name = "granny smith"

[[fruit]]
    name = "banana"

    [[fruit.variety]]
    name = "platain"

Write generated TOML to a file:

$tb->saveToFile('/tmp/my.toml');

Deprecated methods

  • addGroup: since version 0.2. Replaced by addTable.

Unit tests

This package are in compliance with BurntSushi test suite for TOML parsers.

You can run the unit tests with the following command:

$ cd your-path/vendor/yosymfony/toml
$ composer.phar install --dev
$ vendor/bin/phpunit

About

A PHP parser for TOML

License:MIT License


Languages

Language:PHP 100.0%