We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 71847ed commit 5b29286Copy full SHA for 5b29286
src/Command/BuildCompose.php
@@ -252,11 +252,6 @@ protected function configure(): void
252
null,
253
InputOption::VALUE_NONE,
254
'Enables XDebug'
255
- )->addOption(
256
- Source\CliSource::OPTION_WITHOUT_BLACKFIRE,
257
- null,
258
- InputOption::VALUE_NONE,
259
- 'Do not load blackfire php extension by default'
260
)->addOption(
261
Source\CliSource::OPTION_ENV_VARIABLES,
262
src/Compose/Php/ExtensionResolver.php
@@ -46,8 +46,7 @@ class ExtensionResolver
46
'sysvsem',
47
'sysvshm',
48
'opcache',
49
- 'zip',
50
- 'blackfire'
+ 'zip'
51
];
52
53
/**
src/Config/Source/CliSource.php
@@ -53,7 +53,6 @@ class CliSource implements SourceInterface
public const OPTION_NO_TMP_MOUNTS = 'no-tmp-mounts';
54
public const OPTION_SYNC_ENGINE = 'sync-engine';
55
public const OPTION_WITH_XDEBUG = 'with-xdebug';
56
- public const OPTION_WITHOUT_BLACKFIRE = 'without-blackfire';
57
public const OPTION_SET_DOCKER_HOST_XDEBUG = 'set-docker-host';
58
public const OPTION_WITH_ENTRYPOINT = 'with-entrypoint';
59
public const OPTION_WITH_MARIADB_CONF = 'with-mariadb-conf';
@@ -145,7 +144,6 @@ public function __construct(InputInterface $input)
145
144
public function read(): Repository
146
{
147
$repository = new Repository();
148
- $disabledExtensions = [];
149
150
if ($mode = $this->input->getOption(self::OPTION_MODE)) {
151
$repository->set([
@@ -240,10 +238,6 @@ public function read(): Repository
240
238
]);
241
239
}
242
243
- if ($this->input->getOption(self::OPTION_WITHOUT_BLACKFIRE)) {
244
- $disabledExtensions['blackfire'] = 'blackfire';
245
- }
246
-
247
if ($this->input->getOption(self::OPTION_SET_DOCKER_HOST_XDEBUG)) {
248
$repository->set(self::SYSTEM_SET_DOCKER_HOST, true);
249
@@ -316,7 +310,6 @@ public function read(): Repository
316
310
$repository->set(self::SYSTEM_NGINX_WORKER_CONNECTIONS, $nginxWorkerConnections);
317
311
318
312
319
- $repository->set(self::PHP_DISABLED_EXTENSIONS, $disabledExtensions);
320
313
return $repository;
321
314
322
315
src/Test/Integration/BuildComposeTest.php
@@ -87,7 +87,6 @@ public function buildDataProvider(): array
87
[CliSource::OPTION_WITH_TEST, true],
88
[CliSource::OPTION_WITH_CRON, true],
89
[CliSource::OPTION_WITH_XDEBUG, true],
90
- [CliSource::OPTION_WITHOUT_BLACKFIRE, true],
91
[CliSource::OPTION_ES, '5.2'],
92
[CliSource::OPTION_NO_ES, true],
93
[CliSource::OPTION_DB_INCREMENT_INCREMENT, 3],
@@ -107,7 +106,6 @@ public function buildDataProvider(): array
107
106
108
109
110
111
112
113
src/Test/Integration/_files/cloud_base/docker-compose.exp.yml
@@ -127,7 +127,7 @@ services:
127
image: 'magento/magento-cloud-docker-php:7.3-cli-1.2.0'
128
env_file: ./.docker/config.env
129
environment:
130
- - 'PHP_EXTENSIONS=bcmath bz2 calendar exif gd gettext intl mysqli pcntl pdo_mysql soap sockets sysvmsg sysvsem sysvshm opcache zip blackfire redis xsl sodium'
+ - 'PHP_EXTENSIONS=bcmath bz2 calendar exif gd gettext intl mysqli pcntl pdo_mysql soap sockets sysvmsg sysvsem sysvshm opcache zip redis xsl sodium'
131
build:
132
hostname: build.magento2.docker
133
src/Test/Integration/_files/custom_cloud_base/docker-compose.exp.yml
@@ -101,7 +101,7 @@ services:
101
image: 'magento/magento-cloud-docker-php:7.2-cli-1.2.0'
102
103
104
- - 'PHP_EXTENSIONS=bcmath bz2 calendar exif gd gettext intl mysqli pcntl pdo_mysql soap sockets sysvmsg sysvsem sysvshm opcache zip blackfire xsl'
+ - 'PHP_EXTENSIONS=bcmath bz2 calendar exif gd gettext intl mysqli pcntl pdo_mysql soap sockets sysvmsg sysvsem sysvshm opcache zip xsl'
105
hostname: build.magento2.test
src/Test/Integration/_files/custom_cloud_custom_images/docker-compose.exp.yml
@@ -152,7 +152,7 @@ services:
152
image: 'php-v1:7.4-cli'
153
154
155
156
157
158
0 commit comments