PHPackages                             veldora/veldora - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Database &amp; ORM](/categories/database)
4. /
5. veldora/veldora

ActiveProject[Database &amp; ORM](/categories/database)

veldora/veldora
===============

The Veldora PHP Framework

v0.5.0(today)32↑2900%MITPHPPHP ^8.2 || ^8.3

Since Aug 25Pushed todayCompare

[ Source](https://github.com/veldorahq/veldora)[ Packagist](https://packagist.org/packages/veldora/veldora)[ RSS](/packages/veldora-veldora/feed)WikiDiscussions main Synced today

READMEChangelogDependencies (4)Versions (2)Used By (0)

[![Veldora Logo](assets/v-icon.png)](assets/v-icon.png)Veldora
=======

[](#veldora)

**A modern PHP framework you actually own.**

Built-in zero-config CLI • 41+ Built-in Commands • Blade-like Template Engine • 21 Accessible UI Components • Modern MVC Architecture

[![PHP Version](https://camo.githubusercontent.com/6caa15003495643be73f70c6033009042189b7d38acf492a3d5fd04ffbb45059/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5048502d382e322532422d3737374242343f7374796c653d666c61742d737175617265266c6f676f3d706870266c6f676f436f6c6f723d7768697465)](https://php.net)[![npm version](https://camo.githubusercontent.com/72c1def2c677d9067101d525cba590c6b888627119031bedf83a9d2ee79875fc/68747470733a2f2f696d672e736869656c64732e696f2f6e706d2f762f6372656174652d76656c646f72612d6170703f7374796c653d666c61742d737175617265266c6f676f3d6e706d26636f6c6f723d434233383337)](https://www.npmjs.com/package/create-veldora-app)[![VS Code Extension](https://camo.githubusercontent.com/59bff13a85f56f88624a48641bb0426283629cca5da655c1f80615203bcbef1c/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f56535f436f64652d76302e352e342d3030374143433f7374796c653d666c61742d737175617265266c6f676f3d76697375616c73747564696f636f6465266c6f676f436f6c6f723d7768697465)](https://github.com/veldorahq/veldora-vscode)[![License: MIT](https://camo.githubusercontent.com/a7e59c73245b3627b2f1e324c9d2dbd2950e45193c983f4c31b1703b5ab01551/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4c6963656e73652d4d49542d3862356366363f7374796c653d666c61742d737175617265)](LICENSE)[![Docs](https://camo.githubusercontent.com/02b0d0e9d400093f801b48a110bdaf5ebd8bd60d0f81760acf77b13aaec5b754/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f446f63756d656e746174696f6e2d76656c646f72612e6d6f6472616f2e636f6d2d3130423938313f7374796c653d666c61742d737175617265)](https://veldora.modrao.com)

---

✦ Why Veldora?
--------------

[](#-why-veldora)

- **Zero Composer Installation Required to Start** — Scaffolding creates an instantly bootable application with built-in PSR-4 autoloader.
- **You Own Everything** — UI components (`app/components/ui/`) and backend models are copied directly into your codebase. No vendor lock-in.
- **41+ Full-featured CLI Commands** — Built-in generators (`make:*`), database migration manager (`migrate:*`, `db:*`), optimization pipeline (`optimize`), and diagnostics (`doctor`, `about`).
- **Expressive `.veldora.php` Template Engine** — Blade-inspired syntax (`{{ }}`, `{!! !!}`, `@if`, `@foreach`, ``) with pre-compiled view caching.
- **Production-Ready Exception &amp; Diagnostics** — Ignition-style dark error screens with interactive code viewer, error-line highlighter, and one-click stack trace copy.

---

🚀 Quick Start
-------------

[](#-quick-start)

### 1. Scaffold a New Project

[](#1-scaffold-a-new-project)

```
npx create-veldora-app my-app
cd my-app
```

### 2. Start the Development Server

[](#2-start-the-development-server)

```
php veldora serve
```

Your application will be live at `http://localhost:8000`.

---

🛠️ CLI Highlights (41+ Commands)
--------------------------------

[](#️-cli-highlights-41-commands)

```
# Development & System Health
php veldora serve                    # Start local development server
php veldora doctor                   # Run system diagnostics and extension checks
php veldora about                    # Display environment, DB & cache details
php veldora key:generate             # Generate 32-character APP_KEY in .env

# Code Generators
php veldora make:controller PostController
php veldora make:model Post -m       # Model with migration
php veldora make:middleware EnsureAdmin
php veldora make:request StorePostRequest
php veldora make:job ProcessPodcast
php veldora make:auth                # Complete authentication scaffolding

# Database Management
php veldora migrate                  # Run pending migrations
php veldora migrate:status           # Display status of all migrations
php veldora db:seed                  # Seed database with sample data
php veldora db:show                  # Display schema & table counts

# Performance & Optimization
php veldora route:list               # Formatted table of registered routes
php veldora optimize                 # Cache config, routes, and views for production
php veldora optimize:clear           # Clear all framework caches
```

---

🎨 UI Component System
---------------------

[](#-ui-component-system)

Copy pre-styled, accessible UI components directly into `resources/views/components/`:

```
php veldora add button card modal input badge alert tabs
```

Use them seamlessly in any template:

```

    Build fast, beautiful PHP apps with zero hassle.
    Get Started

```

---

📦 Ecosystem Repositories
------------------------

[](#-ecosystem-repositories)

RepositoryDescription[veldorahq/veldora-core](https://github.com/veldorahq/veldora-core)Framework Core engine (HTTP, ORM, Auth, Events, Queues, Mail)[veldorahq/create-veldora-app](https://github.com/veldorahq/create-veldora-app)Official npm initializer &amp; scaffolding CLI[veldorahq/veldora-ui](https://github.com/veldorahq/veldora-ui)UI Component Registry &amp; Styles[veldorahq/veldora-vscode](https://github.com/veldorahq/veldora-vscode)Official VS Code extension (syntax, snippets, file icons)[veldorahq/docs](https://github.com/veldorahq/docs)Official documentation web application---

📄 License &amp; Author
----------------------

[](#-license--author)

- **Author**: Shahriyar Fahim
- **License**: [MIT](LICENSE)
- **Website**:  *(temporary — permanent domain coming soon)*

###  Health Score

40

—

FairBetter than 86% of packages

Maintenance100

Actively maintained with recent releases

Popularity7

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity38

Early-stage or recently created project

 Bus Factor1

Top contributor holds 98.1% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

0d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/225934793?v=4)[Modrao](/maintainers/modrao)[@modrao](https://github.com/modrao)

---

Top Contributors

[![kothalang](https://avatars.githubusercontent.com/u/281343180?v=4)](https://github.com/kothalang "kothalang (52 commits)")[![modrao](https://avatars.githubusercontent.com/u/225934793?v=4)](https://github.com/modrao "modrao (1 commits)")

---

Tags

frameworkmvcormphpphp-frameworktemplatingveldoraweb-framework

###  Code Quality

TestsPHPUnit

Static AnalysisPHPStan

Code StylePHP CS Fixer

Type Coverage Yes

### Embed Badge

![Health badge](/badges/veldora-veldora/health.svg)

```
[![Health](https://phpackages.com/badges/veldora-veldora/health.svg)](https://phpackages.com/packages/veldora-veldora)
```

###  Alternatives

[symfony/symfony

The Symfony PHP framework

31.4k87.4M2.2k](/packages/symfony-symfony)[api-platform/core

Build a fully-featured hypermedia or GraphQL API in minutes!

2.6k52.2M383](/packages/api-platform-core)[getgrav/grav

Modern, Crazy Fast, Ridiculously Easy and Amazingly Powerful Flat-File CMS

15.6k88.1k1](/packages/getgrav-grav)[kimai/kimai

Kimai - Time Tracking

4.8k9.4k1](/packages/kimai-kimai)[moonshine/moonshine

Laravel administration panel

1.3k268.2k90](/packages/moonshine-moonshine)[tempest/framework

The PHP framework that gets out of your way.

2.3k37.6k21](/packages/tempest-framework)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
