luxid / framework
Starter project for Luxid Framework
Requires
- php: ^8.0
- luxid/engine: ^0.6.5
- luxid/nova: ^0.1.1
- luxid/rocket: ^0.1.8
- vlucas/phpdotenv: ^5.6
- dev-master
- v0.6.8
- v0.6.7
- v0.6.6
- v0.6.5
- v0.6.4
- v0.6.3
- v0.6.2
- v0.6.1
- v0.6.0
- v0.5.9
- v0.5.8
- v0.5.7
- v0.5.6
- v0.5.5
- v0.5.4
- v0.5.3
- v0.5.2
- v0.5.1
- v0.5.0
- v0.4.9
- v0.4.8
- v0.4.7
- v0.4.6
- v0.4.5
- v0.4.4
- v0.4.3
- v0.4.2
- v0.4.1
- v0.4.0
- v0.3.9
- v0.3.8
- v0.3.7
- v0.3.6
- v0.3.5
- v0.3.4
- v0.3.3
- v0.3.2
- v0.3.1
- v0.3.0
- v0.2.9
- v0.2.8
- v0.2.7
- v0.2.6
- v0.2.5
- v0.2.4
- v0.2.3
- v0.2.2
- v0.2.1
- v0.2.0
- v0.1.9
- v0.1.8
- v0.1.7
- v0.1.6
- v0.1.5
- v0.1.4
- v0.1.3
- v0.1.2
- v0.1.1
- v0.1.0
- dev-feature/switching-to-new-nova-reactive-system
This package is not auto-updated.
Last update: 2026-03-28 15:40:40 UTC
README
About Luxid
Luxid is a lightweight, modern PHP framework designed with simplicity and speed in mind. Built for developers who want full control over their application architecture, Luxid provides a clean routing system, a flexible screen rendering engine, and an elegant structure for building powerful applications in a custom architecture called SEA [Screen(View) - Entities(Models) - Actions(Controllers)]
Luxid focuses on:
- Clear and expressive routing
- Simple and intuitive actions (controllers)
- A lightweight screen/template engine (
.nova.php) - Easy request/response handling
- Minimal setup, maximum flexibility
Luxid removes the unnecessary complexity of large frameworks and gives developers a clean, enjoyable development experience.
Key Features
- Fast routing engine with support for GET/POST and callbacks
- Action-based controllers (cleaner than classical MVC)
- Simple
.nova.phpscreen rendering system - Framework-level request sanitization
- Extensible architecture
- Easily readable, elegant syntax
- Zero-dependency core (other than Composer autoloading)
Luxid is ideal for small-to-medium web apps, APIs, school management systems, dashboards, and learning modern PHP framework design.
Installation
To get started with Luxid, follow these steps:
1. Create a new Luxid project via Composer
composer create-project luxid/framework my-app
cd my-app
2. Configure environment
- Edit
.envto configure your database
DB_DSN=mysql:host=127.0.0.1;port=3306;dbname=luxid DB_USER=root DB_PASSWORD=
You can find further instructions in the .env on how to configure your database credentials based on your Operating System.
- Create the database
php juice db:create
- Run migrations
php juice db:migrate
- Start the development server
php juice start
- After these steps, you can access your Luxid application at http://localhost:8080
Learning Luxid
Luxid clear documentation luxid.dev and is intentionally designed to be beginner-friendly for developers learning framework architecture.
You can explore:
- The
screens/folder – UI screens - The
app/actions/folder – controllers migrations/folder - migrations
Contributing
Thank you for your interest in contributing to Luxid! A full contribution guide will be included in the documentation, but in general:
- Follow PSR-12 coding standards
- Submit PRs with clear descriptions
- Make sure your additions are tested and documented
Security Vulnerabilities
If you discover a security issue within Luxid, please contact:
Email: jhay@luxid.dev
All vulnerabilities will be reviewed and patched promptly.
License
Luxid is open-source software licensed under the MIT License.