1.1.3 - Fix xdebug installation

This commit is contained in:
Daniel Winning 2025-05-04 12:23:18 +01:00
parent 3ed4225142
commit 9576357245
4 changed files with 7 additions and 8 deletions

View file

@ -2,6 +2,10 @@
All notable changes to this project will be documented in this file. 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 ## [1.1.2] - 2025-04-26
### Fixed ### Fixed
- Fixed a critical bug where environments would not build correctly if using a SQLite database. - Fixed a critical bug where environments would not build correctly if using a SQLite database.

View file

@ -5,7 +5,7 @@
# Loom Spinner CLI # Loom Spinner CLI
<p> <p>
<img src="https://img.shields.io/badge/Version-1.1.2-blue" alt="Version 1.1.2"> <img src="https://img.shields.io/badge/Version-1.1.3-blue" alt="Version 1.1.3">
</p> </p>
A streamlined environment management tool for PHP developers. A streamlined environment management tool for PHP developers.

View file

@ -1,17 +1,12 @@
{ {
"name": "loomlabs/loom-spinner-cli", "name": "loomlabs/loom-spinner-cli",
"description": "A simple command-line Docker environment spinner for PHP.", "description": "A simple command-line Docker environment spinner for PHP.",
"version": "1.1.2", "version": "1.1.3",
"autoload": { "autoload": {
"psr-4": { "psr-4": {
"Loom\\Spinner\\": "src/" "Loom\\Spinner\\": "src/"
} }
}, },
"autoload-dev": {
"psr-4": {
"Loom\\Spinner\\Tests\\": "tests/"
}
},
"require": { "require": {
"symfony/console": "^7.2", "symfony/console": "^7.2",
"symfony/yaml": "^7.2" "symfony/yaml": "^7.2"

View file

@ -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" COPY ./xdebug.ini "${PHP_INI_DIR}/conf.d/xdebug.ini"