Compare commits

...

3 commits

Author SHA1 Message Date
3ed4225142 Merge pull request '1.1.2 - Fix for SQLite build' (#3) from dev into main
Reviewed-on: #3
2025-04-26 13:52:24 +00:00
b235a1c95a Remove unused dependencies 2025-04-26 14:52:02 +01:00
ab18af5b5b Fix for SQLite build 2025-04-26 14:47:59 +01:00
5 changed files with 9 additions and 10 deletions

View file

@ -2,6 +2,10 @@
All notable changes to this project will be documented in this file.
## [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
### Fixed
- Fixed a critical bug where environments could not be destroyed if using a MySQL database.
@ -28,7 +32,7 @@ All notable changes to this project will be documented in this file.
- Added information on `spin:down` command to README.
### 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
### Changed

View file

@ -5,7 +5,7 @@
# Loom Spinner CLI
<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.2-blue" alt="Version 1.1.2">
</p>
A streamlined environment management tool for PHP developers.

View file

@ -1,7 +1,7 @@
{
"name": "loomlabs/loom-spinner-cli",
"description": "A simple command-line Docker environment spinner for PHP.",
"version": "1.1.1",
"version": "1.1.2",
"autoload": {
"psr-4": {
"Loom\\Spinner\\": "src/"
@ -13,13 +13,9 @@
}
},
"require": {
"loomlabs/utility.collection": "^1.1",
"symfony/console": "^7.2",
"symfony/yaml": "^7.2"
},
"require-dev": {
"phpunit/phpunit": "^12.1"
},
"bin": [
"bin/loom"
],

View file

@ -2,9 +2,9 @@ services:
nginx:
build:
context: ./nginx
container_name: ${PROJECT_NAME}-nginx
ports:
- ${SERVER_PORT}:80
volumes:
- ${PROJECT_DIRECTORY}:/var/www/html:cached
- ./nginx/conf.d:/etc/nginx/conf.d
container_name: ${PROJECT_NAME}-nginx
- ./nginx/conf.d:/etc/nginx/conf.d

View file

@ -5,7 +5,6 @@ declare(strict_types=1);
namespace Loom\Spinner\Classes\File;
use Loom\Spinner\Classes\Config\Config;
use Loom\Utility\FilePath\FilePath;
use Symfony\Component\Console\Input\InputInterface;
class DockerComposeFileBuilder extends AbstractFileBuilder