Show HN: Fusion – A PHP Package Manager
2 retlim 3 5/15/2025, 12:47:34 AM gitlab.com ↗
Hi there, I've been working on Fusion, a PHP package manager for PHP-based projects that automates repetitive tasks such as managing dependencies, migrating package states, extending packages, and registering loadable code.
Key features:
- Everything is a modular package
- Scoped metadata and snapshot files
- Lifecycle callbacks
- Auto-generated code registries
- Flexible package references
- Directory type indicators
- Interface-based customization
Repo: https://gitlab.com/valvoid/fusion/php/code
Would love any feedback.
Everything is a modular package
To keep things simple and easy to use, Fusion handles everything, including your project, its dependencies, and even the package manager itself, as a modular package that can be standalone, a nested dependency of another, or both at the same time. This is possible since each package has its own custom directory structure, which you can define in the metadata file as you like.
For example, you can install a release of your project as a standalone, self-updatable package out of the box.
In short: it sounds like you may not be familiar with Composer. I'd strongly recommend that you take a close look at it; you may be reinventing the wheel here.