mirror of
https://github.com/flarum/framework.git
synced 2025-01-21 12:51:44 +08:00
64b25b26c3
Allows running tests without constantly running `composer install` on each extension.
19 lines
401 B
PHP
19 lines
401 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\PackageManager\Tests\integration\SetupComposer;
|
|
|
|
$setup = require __DIR__.'/../../../../php-packages/testing/bootstrap/monorepo.php';
|
|
|
|
$setup->run();
|
|
|
|
$setupComposer = new SetupComposer();
|
|
|
|
$setupComposer->run();
|