Installation

Minimum requirements (as of v1.5) are PHP 7.2 and Laravel 5.5

Install with composer:

composer require konekt/gears

The service provider and the aliases (facades) get registered automatically with Laravel.

If you want to register the package manually, add the following lines to config/app.php:

// config/app.php

'providers' => [
    // ...
    Konekt\Gears\Providers\GearsServiceProvider::class,
],
//...
'aliases' => [
    // ...
    'Settings' => Konekt\Gears\Facades\Settings::class,
    'Preferences' => Konekt\Gears\Facades\Preferences::class,
]

Next: Configuration »