An open API service indexing awesome lists of open source software.

https://github.com/olomadev/olobase

Olobase Php - Mezzio Framework components.
https://github.com/olomadev/olobase

admin api framework mezzio php rest spa vue vuetify

Last synced: 3 months ago
JSON representation

Olobase Php - Mezzio Framework components.

Awesome Lists containing this project

README

          

# Olobase Php REST API - Mezzio Framework components.

Oloma Mezzio Framework components.

## Installation

Put \Olobase\ConfigProvider::class in to your /config/autoload/mezzio.global.php file.

```
declare(strict_types=1);

use Laminas\ConfigAggregator\ArrayProvider;
use Laminas\ConfigAggregator\ConfigAggregator;
use Laminas\ConfigAggregator\PhpFileProvider;
use Mezzio\Helper\ConfigProvider;

// To enable or disable caching, set the `ConfigAggregator::ENABLE_CACHE` boolean in
// `config/autoload/local.php`.
$cacheConfig = [
'config_cache_path' => 'data/cache/config-cache.php',
];

$aggregator = new ConfigAggregator([

// Oloma components
\Olobase\ConfigProvider::class,

// Load application config in a pre-defined order in such a way that local settings
// overwrite global settings. (Loaded as first to last):
// - `global.php`
// - `*.global.php`
// - `local.php`
// - `*.local.php`
// new PhpFileProvider(realpath(__DIR__) . '/autoload/{{,*.}global,{,*.}local}.php'),
new PhpFileProvider(realpath(__DIR__) . sprintf('/autoload/{,*.}{global,%s}.php', getenv('APP_ENV') ?: 'local')),

// Load development config if it exists
new PhpFileProvider(realpath(__DIR__) . '/development.config.php'),
], $cacheConfig['config_cache_path']);

return $aggregator->getMergedConfig();
```