From 957635724558fc2bd078232abd4f754e67e008fb Mon Sep 17 00:00:00 2001 From: Danny Date: Sun, 4 May 2025 12:23:18 +0100 Subject: [PATCH] 1.1.3 - Fix xdebug installation --- CHANGELOG.md | 4 ++++ README.md | 2 +- composer.json | 7 +------ config/php-fpm/XDebug.Dockerfile | 2 +- 4 files changed, 7 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bbe7565..3006e22 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to this project will be documented in this file. +## [1.1.3] - 2025-05-04 +### Fixed +- Fixed a typo causing XDebug installation to fail inside the PHP-FPM container. + ## [1.1.2] - 2025-04-26 ### Fixed - Fixed a critical bug where environments would not build correctly if using a SQLite database. diff --git a/README.md b/README.md index 46f2137..303fc7f 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ # Loom Spinner CLI

-Version 1.1.2 +Version 1.1.3

A streamlined environment management tool for PHP developers. diff --git a/composer.json b/composer.json index 98726b2..226ddab 100644 --- a/composer.json +++ b/composer.json @@ -1,17 +1,12 @@ { "name": "loomlabs/loom-spinner-cli", "description": "A simple command-line Docker environment spinner for PHP.", - "version": "1.1.2", + "version": "1.1.3", "autoload": { "psr-4": { "Loom\\Spinner\\": "src/" } }, - "autoload-dev": { - "psr-4": { - "Loom\\Spinner\\Tests\\": "tests/" - } - }, "require": { "symfony/console": "^7.2", "symfony/yaml": "^7.2" diff --git a/config/php-fpm/XDebug.Dockerfile b/config/php-fpm/XDebug.Dockerfile index df3362b..05c5fc1 100644 --- a/config/php-fpm/XDebug.Dockerfile +++ b/config/php-fpm/XDebug.Dockerfile @@ -1,3 +1,3 @@ -RUN pecl install xdebug > /dev/null 2&>1 +RUN pecl install xdebug > /dev/null 2>&1 COPY ./xdebug.ini "${PHP_INI_DIR}/conf.d/xdebug.ini" \ No newline at end of file