2021-11-08 20:22:07 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This file is part of Flarum.
|
|
|
|
*
|
|
|
|
* For detailed copyright and license information, please view the
|
|
|
|
* LICENSE file that was distributed with this source code.
|
|
|
|
*/
|
|
|
|
|
2024-01-22 18:58:08 +01:00
|
|
|
use Flarum\ExtensionManager\Tests\integration\SetupComposer;
|
|
|
|
use Flarum\Testing\integration\Setup\SetupScript;
|
2021-11-08 20:22:07 +01:00
|
|
|
|
2024-01-22 18:58:08 +01:00
|
|
|
require __DIR__.'/../../vendor/autoload.php';
|
|
|
|
|
|
|
|
$setup = new SetupScript();
|
2021-11-08 20:22:07 +01:00
|
|
|
|
|
|
|
$setup->run();
|
|
|
|
|
|
|
|
$setupComposer = new SetupComposer();
|
|
|
|
|
|
|
|
$setupComposer->run();
|