Merge pull request '1.1.3 - Fix xdebug installation' (#4) from dev into main

Reviewed-on: #4
This commit is contained in:
Daniel Winning 2025-05-04 11:24:49 +00:00
commit e80ca5d029
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.
## [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.

View file

@ -5,7 +5,7 @@
# Loom Spinner CLI
<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>
A streamlined environment management tool for PHP developers.

View file

@ -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"

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"