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
-
+
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