<?php
/**
* This file is part of the O2System PHP Framework package.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @author Steeve Andrian Salim
* @copyright Copyright (c) Steeve Andrian Salim
*/
// ------------------------------------------------------------------------
/*
| -------------------------------------------------------------------
| Autoload Services
| -------------------------------------------------------------------
| These are the classes located in the modular Libraries folder
| or dependency classes located in the composer vendor folder.
| The array key is the offset of the library class.
|
| Example lazy init libraries
| $services[ 'foo' ] = 'App\Libraries\Foo';
|
| Example init libraries
| $services[ 'foo' ] = new App\Libraries\Foo( 'bar' );
| $services['user'] = \O2System\Framework\Libraries\AccessControl\User::class;
|
*/
|