| Install | |
|---|---|
composer require signals-rental/framework |
|
| Latest Version: | v0.2.0 |
| PHP: | ^8.4 |
An open-source rental management framework for equipment rental and event hire companies. Covers the full rental lifecycle — quoting, ordering, invoicing, asset management, availability, scheduling, maintenance, and CRM.
MIT licensed. Self-hostable. Plugin-extensible.
| Layer | Technology |
|---|---|
| Backend | PHP 8.4, Laravel 12 |
| Frontend | Livewire 4, Tailwind CSS 4 |
| Database | PostgreSQL 15+ |
| Queue | Redis + Horizon |
| Websockets | Laravel Reverb |
| Testing | Pest 4 |
git clone https://github.com/signals-rental/framework.git
cd framework
composer setup
composer setup installs dependencies, generates an app key, builds frontend assets, and launches the install wizard.
Three commands get you running:
| Step | Command | What it does |
|---|---|---|
| 1 | composer setup |
Install dependencies, generate app key, build frontend |
| 2 | php artisan signals:install |
Configure database, Redis, S3, and websockets |
| 3 | php artisan signals:setup |
Set up company, stores, branding, and admin account |
Start all services concurrently:
composer dev
This runs the web server, queue worker, log viewer, Vite dev server, and Reverb websocket server.
php artisan test --parallel
vendor/bin/pint # fix formatting
vendor/bin/phpstan analyse # static analysis
For CI/CD or automated deployments:
php artisan signals:install --no-interaction \
--db-host=127.0.0.1 \
--db-password=secret \
--cache-driver=redis \
--storage-driver=local \
--app-url=https://signals.example.com
Signals Rental Framework is open-source software licensed under the MIT license.