mirror of
https://github.com/jbcr/core.git
synced 2026-03-24 17:02:13 +01:00
16 lines
331 B
PHP
16 lines
331 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Bolt\ComposerScripts;
|
|
|
|
class PrePackageUninstallScript extends Script
|
|
{
|
|
public static function execute(): void
|
|
{
|
|
parent::init('Running composer "pre-package-uninstall" scripts');
|
|
|
|
self::run('php bin/console extensions:configure --remove-services --ansi');
|
|
}
|
|
}
|