1.1.3 - Fix xdebug installation #4
4 changed files with 7 additions and 8 deletions
|
@ -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.
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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"
|
Loading…
Add table
Reference in a new issue