mirror of
https://github.com/flarum/framework.git
synced 2024-12-04 08:13:39 +08:00
22 lines
441 B
PHP
22 lines
441 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\Testing\integration\Setup\SetupScript;
|
|
use Flarum\PackageManager\Tests\integration\SetupComposer;
|
|
|
|
require __DIR__.'/../../vendor/autoload.php';
|
|
|
|
$setup = new SetupScript();
|
|
|
|
$setup->run();
|
|
|
|
$setupComposer = new SetupComposer();
|
|
|
|
$setupComposer->run();
|