blt
13.7.4
Acquia 已宣布 BLT 生命周期结束,自 2024 年 7 月 1 日起生效。有关更多详细信息,请参阅#4736
BLT(构建和启动工具)提供了一个自动化层,用于测试、构建和启动 Drupal 8 和 9 应用程序。
要了解更多信息并开始使用,请参阅文档:https://docs.acquia.com/blt
要查看 Acquia 和社区提供的 BLT 插件,请参阅插件注册表。
BLT版本 | 支持吗? | Drupal 主要版本 | PHP版本 | 冲版 |
---|---|---|---|---|
13.x | 是的 | 9.x、10.x | 8.0、8.1、8.2 * | 11.x、12.x * |
12.x | 不 | 9.x | 7.4 | 10.x |
11.x | 不 | 8.x | 7.4 | 9.x、10.x |
* BLT 用户必须至少升级到 BLT 13.5.x 才能升级到 PHP 8.1。和 Drush 11.0.7(或更高版本)。
PHP 8.2、Drush 12 和 Drupal 10 支持不稳定。
composer update acquia/blt -W
/docroot/sites/<site-name>/settings.php
的 settings.php 文件中删除 BLT 引用。 - require DRUPAL_ROOT . "/../vendor/acquia/blt/settings/blt.settings.php";
- /**
- * IMPORTANT.
- *
- * Do not include additional settings here. Instead, add them to settings
- * included by `blt.settings.php`. See BLT's documentation for more detail.
- *
- * @link https://docs.acquia.com/blt/
- */
+ require DRUPAL_ROOT . "/../vendor/acquia/drupal-recommended-settings/settings/acquia-recommended.settings.php";
+ /**
+ * IMPORTANT.
+ *
+ * Do not include additional settings here. Instead, add them to settings
+ * included by `acquia-recommended.settings.php`. See Acquia's documentation for more detail.
+ *
+ * @link https://docs.acquia.com/
+ */
default.local.settings.php
和local.settings.php
以使用此DSR插件提供的环境检测器而不是BLT: - use AcquiaBltRoboCommonEnvironmentDetector;
+ use AcquiaDrupalRecommendedSettingsHelpersEnvironmentDetector;
./vendor/bin/blt blt:migrate
版权所有 (C) 2020 Acquia, Inc.
该程序是免费软件:您可以根据自由软件基金会发布的 GNU 通用公共许可证版本 2 的条款重新分发和/或修改它。
分发此程序的目的是希望它有用,但不提供任何保证;甚至没有适销性或特定用途适用性的默示保证。有关更多详细信息,请参阅 GNU 通用公共许可证。