Compare commits
5 commits
Author | SHA1 | Date | |
---|---|---|---|
e80ca5d029 | |||
9576357245 | |||
3ed4225142 | |||
b235a1c95a | |||
ab18af5b5b |
6 changed files with 14 additions and 16 deletions
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -2,6 +2,14 @@
|
||||||
|
|
||||||
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
|
||||||
|
### Fixed
|
||||||
|
- Fixed a critical bug where environments would not build correctly if using a SQLite database.
|
||||||
|
|
||||||
## [1.1.1] - 2025-04-26
|
## [1.1.1] - 2025-04-26
|
||||||
### Fixed
|
### Fixed
|
||||||
- Fixed a critical bug where environments could not be destroyed if using a MySQL database.
|
- Fixed a critical bug where environments could not be destroyed if using a MySQL database.
|
||||||
|
@ -28,7 +36,7 @@ All notable changes to this project will be documented in this file.
|
||||||
- Added information on `spin:down` command to README.
|
- Added information on `spin:down` command to README.
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
- Minor documentation tweak to include link to Wiki on Packagist.
|
- Minor documentation tweak to include a link to the Wiki on Packagist.
|
||||||
|
|
||||||
## [1.0.1] - 2025-04-24
|
## [1.0.1] - 2025-04-24
|
||||||
### Changed
|
### Changed
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
# Loom Spinner CLI
|
# Loom Spinner CLI
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
<img src="https://img.shields.io/badge/Version-1.1.1-blue" alt="Version 1.1.1">
|
<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.
|
||||||
|
|
|
@ -1,25 +1,16 @@
|
||||||
{
|
{
|
||||||
"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.1",
|
"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": {
|
||||||
"loomlabs/utility.collection": "^1.1",
|
|
||||||
"symfony/console": "^7.2",
|
"symfony/console": "^7.2",
|
||||||
"symfony/yaml": "^7.2"
|
"symfony/yaml": "^7.2"
|
||||||
},
|
},
|
||||||
"require-dev": {
|
|
||||||
"phpunit/phpunit": "^12.1"
|
|
||||||
},
|
|
||||||
"bin": [
|
"bin": [
|
||||||
"bin/loom"
|
"bin/loom"
|
||||||
],
|
],
|
||||||
|
|
|
@ -2,9 +2,9 @@ services:
|
||||||
nginx:
|
nginx:
|
||||||
build:
|
build:
|
||||||
context: ./nginx
|
context: ./nginx
|
||||||
|
container_name: ${PROJECT_NAME}-nginx
|
||||||
ports:
|
ports:
|
||||||
- ${SERVER_PORT}:80
|
- ${SERVER_PORT}:80
|
||||||
volumes:
|
volumes:
|
||||||
- ${PROJECT_DIRECTORY}:/var/www/html:cached
|
- ${PROJECT_DIRECTORY}:/var/www/html:cached
|
||||||
- ./nginx/conf.d:/etc/nginx/conf.d
|
- ./nginx/conf.d:/etc/nginx/conf.d
|
||||||
container_name: ${PROJECT_NAME}-nginx
|
|
|
@ -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"
|
|
@ -5,7 +5,6 @@ declare(strict_types=1);
|
||||||
namespace Loom\Spinner\Classes\File;
|
namespace Loom\Spinner\Classes\File;
|
||||||
|
|
||||||
use Loom\Spinner\Classes\Config\Config;
|
use Loom\Spinner\Classes\Config\Config;
|
||||||
use Loom\Utility\FilePath\FilePath;
|
|
||||||
use Symfony\Component\Console\Input\InputInterface;
|
use Symfony\Component\Console\Input\InputInterface;
|
||||||
|
|
||||||
class DockerComposeFileBuilder extends AbstractFileBuilder
|
class DockerComposeFileBuilder extends AbstractFileBuilder
|
||||||
|
|
Loading…
Add table
Reference in a new issue