mirror of
https://github.com/jbcr/core.git
synced 2026-03-25 09:22:19 +01:00
19 lines
524 B
PHP
19 lines
524 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Bolt\ComposerScripts;
|
|
|
|
class PostUpdateScript extends Script
|
|
{
|
|
public static function execute(): void
|
|
{
|
|
parent::init('Running composer "post-update-cmd" scripts');
|
|
|
|
self::run('php bin/console extensions:configure --with-config --ansi');
|
|
self::run('php bin/console cache:clear --no-warmup --ansi');
|
|
self::run('php bin/console assets:install --symlink --relative public --ansi');
|
|
self::run('php bin/console bolt:info --ansi');
|
|
}
|
|
}
|