mirror of
https://github.com/flarum/framework.git
synced 2024-12-12 22:53:37 +08:00
3fbe05fd18
* feat(em): port extension manager from 1.0 * Apply fixes from StyleCI * chore: phpstan --------- Co-authored-by: StyleCI Bot <bot@styleci.io>
22 lines
469 B
PHP
22 lines
469 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.
|
|
*/
|
|
|
|
namespace Flarum\ExtensionManager\Tests\integration;
|
|
|
|
trait ChangeComposerConfig
|
|
{
|
|
protected function setComposerConfig(array $requirements): void
|
|
{
|
|
$composerSetup = new SetupComposer($requirements);
|
|
$composerSetup->run();
|
|
|
|
$this->composer('install');
|
|
}
|
|
}
|