mirror of
https://github.com/jbcr/core.git
synced 2026-03-25 01:12:09 +01:00
18 lines
535 B
PHP
18 lines
535 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 doctrine:migrations:up-to-date --ansi');
|
|
self::run('php bin/console extensions:configure --ansi');
|
|
}
|
|
}
|