mirror of
https://github.com/flarum/framework.git
synced 2025-02-19 07:13:24 +08:00
![Sami Mazouz](/assets/img/avatar_default.png)
* feat(em): port extension manager from 1.0 * Apply fixes from StyleCI * chore: phpstan --------- Co-authored-by: StyleCI Bot <bot@styleci.io>
22 lines
443 B
PHP
22 lines
443 B
PHP
<?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.
|
|
*/
|
|
|
|
use Flarum\ExtensionManager\Tests\integration\SetupComposer;
|
|
use Flarum\Testing\integration\Setup\SetupScript;
|
|
|
|
require __DIR__.'/../../vendor/autoload.php';
|
|
|
|
$setup = new SetupScript();
|
|
|
|
$setup->run();
|
|
|
|
$setupComposer = new SetupComposer();
|
|
|
|
$setupComposer->run();
|