melisplatform / melis-platform-framework-silex-demo-tool-logic
A Silex framework demo tool logics
Installs: 92
Dependents: 1
Suggesters: 0
Security: 0
Stars: 1
Watchers: 7
Forks: 0
Open Issues: 0
Type:melisplatform-module
Requires
This package is auto-updated.
Last update: 2024-11-07 15:39:55 UTC
README
This is a demo of a Silex module that is being rendered inside the Melis Platform.
Prerequisites
This module requires the following:
- melisplatform/melis-cms-news
- melisplatform/melis-platform-framework-silex
The required modules will be automatically installed when using composer.
Installing
composer require melisplatform/melis-platform-framework-silex-demo-tool-logic
Usage
In order to load and use a this provider, you must register this provider in the Silex application which is commonly located in /Silex/src/app.php
use MelisPlatformFrameworkSilex\Provider\MelisSilexDemoTooolLogicServiceProvider;
$app = new Silex\Application();
$app->register(new MelisSilexDemoTooolLogicServiceProvider());
Note : This provider has to be always registered first before the rest of silex providers.