mirror of
https://github.com/jbcr/core.git
synced 2026-03-26 01:42:10 +01:00
17 lines
459 B
PHP
17 lines
459 B
PHP
<?php
|
|
|
|
namespace Bolt\ComposerScripts;
|
|
|
|
class PostInstallScript extends Script
|
|
{
|
|
public static function execute()
|
|
{
|
|
parent::init('Running composer "post-install-cmd" scripts');
|
|
|
|
self::run('php bin/console bolt:copy-assets --ansi');
|
|
self::run('php bin/console cache:clear --no-warmup --ansi');
|
|
self::run('php bin/console assets:install --ansi');
|
|
self::run('php bin/console extensions:configure --ansi');
|
|
}
|
|
}
|