Skip to content

Commit

Permalink
Merge branch 'release/v4.0.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
Invis1ble committed Jun 3, 2024
2 parents e762316 + 30aa278 commit 981157e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
5 changes: 2 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
unzip=6.0-28 \
&& rm -rf /var/lib/apt/lists/*

RUN set -eux; \
pecl install xdebug-3.3.2 \
&& docker-php-ext-enable xdebug
RUN bash -c '[[ -n "$(pecl list | grep xdebug)" ]]\
|| (pecl install xdebug-3.3.2 && docker-php-ext-enable xdebug)'

COPY --from=composer:latest /usr/bin/composer /usr/local/bin/composer

Expand Down
1 change: 0 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"name": "invis1ble/messenger-bundle",
"version": "4.0.0",
"type": "symfony-bundle",
"description": "Symfony Bundle for the Bus and Message Interfaces and Implementations.",
"authors": [
Expand Down
2 changes: 1 addition & 1 deletion tests/Invis1bleMessengerBundleTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public function testContainerContainsBus(string $serviceFqn, string $aliasFqn, s
}

/**
* @return \Generator<array<string, string>>
* @return \Generator<string[]>
*/
public static function provideBus(): iterable
{
Expand Down

0 comments on commit 981157e

Please sign in to comment.