checkdomain / php-toml
A PHP TOML Parser to parse TOML configuration files.
Requires
- php: >=5.3.0
This package is auto-updated.
Last update: 2023-05-24 18:00:39 UTC
README
Checkdomain TOML Parser is a parser for TOML files.
Installation
PHP TOML Parser is available via Composer or direct download from github.com. You can find some package infos at packagist.org.
Composer
Get Composer and add the following to your composer.json:
"require": { // ... "checkdomain/php-toml": "*" }
Download
If you want to download this (I strongly suggest to use composer) you need to include the files directly or use any sort of PSR-0 compatible autoloading mechanism.
Usage
Once installed Checkdomain TOML Parser is easy to use:
<?php $toml = new \Checkdomain\Toml('/path/to/toml/file.toml'); // Path accessor $toml->get('database.server'); // Array accessor $toml->values['database']['server']
You can also use the instance multiple times by calling the parse
method:
<?php $toml = new \Checkdomain\Toml; $result = $toml->parse('/path/to/toml/file.toml'); // You can access the returned array like this $result['database']['server'];
Contributions
You are free to contribute to this project. Please provide test if neccessary for your
changes. All tests can be found in the /tests
directory.