Compare commits

..

No commits in common. "bec504d21c52b8f1cec8c6c8402fe24c24e8a612" and "c1247f435cb53bfc047b8dbb34ab7527762e7f34" have entirely different histories.

4 changed files with 5 additions and 16 deletions

View file

@ -2,12 +2,8 @@
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.0] - 2025-04-24
### Fixed
- Fixed a critical autoloading issue after the package is globally installed.
## [1.0.3] - 2025-04-24 ## [1.0.3] - 2025-04-24
### Fixed ## Fixed
- Fixed typo in `composer.json` description field. - Fixed typo in `composer.json` description field.
## [1.0.2] - 2025-04-24 ## [1.0.2] - 2025-04-24

View file

@ -5,7 +5,7 @@
# Loom Spinner CLI # Loom Spinner CLI
<p> <p>
<img src="https://img.shields.io/badge/Version-1.1.0-blue" alt="Version 1.1.0"> <img src="https://img.shields.io/badge/Version-1.0.3-blue" alt="Version 1.0.3">
</p> </p>
A streamlined environment management tool for PHP developers. A streamlined environment management tool for PHP developers.

View file

@ -7,14 +7,7 @@ use Loom\Spinner\Command\StartCommand;
use Loom\Spinner\Command\StopCommand; use Loom\Spinner\Command\StopCommand;
use Symfony\Component\Console\Application; use Symfony\Component\Console\Application;
$localAutoloadPath = sprintf('%s/vendor/autoload.php', dirname(__DIR__)); require dirname(__DIR__) . '/vendor/autoload.php';
$installedAutoloadPath = sprintf('%s/autoload.php', dirname(__DIR__, 3));
if (file_exists($localAutoloadPath)) {
require $localAutoloadPath;
} else {
require $installedAutoloadPath;
}
$application = new Application('Loom Spinner'); $application = new Application('Loom Spinner');

View file

@ -1,7 +1,7 @@
{ {
"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.0", "version": "1.0.3",
"autoload": { "autoload": {
"psr-4": { "psr-4": {
"Loom\\Spinner\\": "src/" "Loom\\Spinner\\": "src/"