178inaba/tomlara

package for using the config file of toml in laravel.
43
Install
composer require 178inaba/tomlara
Latest Version:v1.0.2
License:MIT
Last Updated:Jun 7, 2016
Links: GitHub  ·  Packagist
Maintainer: 178inaba

tomlara

Total Downloads Latest Stable Version Latest Unstable Version License

package for using the config file of toml in laravel.

install

$ composer require 178inaba/tomlara

how to use

add bootstrappers() method for app/Http/Kernel.php and app/Console/Kernel.php.

<?php

//namespace App\Console;
namespace App\Http;

//use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
use Illuminate\Foundation\Http\Kernel as HttpKernel;

//class Kernel extends ConsoleKernel
class Kernel extends HttpKernel
{
    // ...

    protected function bootstrappers()
    {
        $this->bootstrappers[] = 'Inaba\Tomlara';
        return $this->bootstrappers;
    }
}

use func

inspired by Devitek/laravel-yaml-configuration

test

$ composer install
$ vendor/bin/phpunit --bootstrap vendor/autoload.php tests

licence

MIT

Related Packages

torann/registry

Laravel registry manager for application configurations

2,038 22
cornford/setter

An easy way to intergrate Database Settings with Laravel.

1,046 13
delatbabel/site-config

A database backed config loader for Laravel with per-site configuration.

1,363 4
mascame/arrayer

Array manipulation with dot notation. Also prepares an array to be put in a file...

1,450 14
orchestra/config

Configuration Component for Laravel and Orchestra Platform

9,074 7