| Install | |
|---|---|
composer require melisplatform/melis-platform-framework-lumen |
|
| License: | OSL-3.0 |
| Last Updated: | May 24, 2023 |
| Links: | GitHub · Packagist |
This module brings the Lumen microframework inside melis platform and has a ServiceProvider to access all Melis services.
These instructions will guide you to run the lumen microframework inside melis platform.
This module requires melisplatform/melis-core and laravel/lumen-framework in order to have this module running. It will automatically be done when using composer.
composer require melisplatform/melis-platform-framework-lumen
To use the service provider just add the line below in the \bootstrap\app.php file in the "Register Service Providers" area.
$app->register(\MelisPlatformFrameworkLumen\Providers\ZendServiceProvider::class)
You can also use the class MelisServiceProvder anywhere in the app in getting melis services.
Here's an example of direct calling of a Model from melis-core inside a lumen controller.
$melisCoreLangTable = app('ZendServiceManager)->get('MelisCoreTableLang');
$resultArray = $mesliCoreLangTable->fetchAll()->toArray();
Example of using the class MelisServiceProvider
use MelisPlatformFrameworkLumen\MelisServiceProvider;
$melisServiceProvider = new MelisServiceProvider();
$melisCoreLangTable = $melisServiceProvider->getService('MelisCoreTableLang');
$resultArray = $melisCoreLangTable->fetchAll()->toArray();
Addtional info :
In getting a melis service/table, just look for module.config.php in every melisplatform module. Look for the service_manager key, you can use array keys under aliases or under factories.
Example : MelisCoreTableLang
You can find the file location according to its current value.
Example : MelisCoreTableLang => 'MelisCore\Model\Tables\MelisLangTable'
File location : melis-core/src/Model/Tables/MelisLangTable.php , in here you can see all the available functions.
See also the list of contributors who participated in this project.
This project is licensed under the OSL-3.0 License - see the LICENSE.md file for details