PHP code example of moro / team-migrations-silex
1. Go to this page and download the library: Download moro/team-migrations-silex library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
moro / team-migrations-silex example snippets
php
// bootstrap.php
$app->register(new TeamMigrationsServiceProvider(), [
'team-migrations.options' => [
'environment' => 'development',
'path.project' => dirname(__DIR__),
/* ... */
],
'team-migrations.providers' => [
new FilesStorageHandlerProvider(),
/* ... */
],
]);