PHPackages                             xzilverium/kattile - 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. [Framework](/categories/framework)
4. /
5. xzilverium/kattile

ActiveProject[Framework](/categories/framework)

xzilverium/kattile
==================

The skeleton application for the Kattile framework.

v26.6.1(yesterday)01↑2900%MITCSSPHP ^8.3

Since Jun 9Pushed yesterdayCompare

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

READMEChangelog (1)Dependencies (9)Versions (2)Used By (0)

Kattile
=======

[](#kattile)

A Laravel-based application framework powered by the Kvendor engine.

Current Version: 26.6.1 (Development Preview) Target First Stable Release: 26.6.2

---

Overview
--------

[](#overview)

Kattile is an application framework built on top of Laravel.

It provides:

- Structured project architecture
- Kvendor engine
- Air command-line tools
- Project branding system
- Template management
- Silver Ambient 1010 styling system
- Laravel ecosystem compatibility

Kattile extends Laravel while remaining familiar to Laravel developers.

---

Components
----------

[](#components)

### Kattile

[](#kattile-1)

The application framework.

### Kvendor

[](#kvendor)

The internal engine powering Kattile.

Kvendor contains:

- Air commands
- Templates
- Framework manifests
- Internal utilities
- Future framework services

### Air

[](#air)

The Kattile command-line interface.

Examples:

```
php air --version
php air pull
php air pull config/brand.php
php air pull public/css
php air rebrand
```

---

Requirements
------------

[](#requirements)

### Required

[](#required)

- PHP 8.3 or later
- Composer

### Database

[](#database)

Any Laravel-supported database:

- SQLite
- MySQL
- MariaDB
- PostgreSQL

### Browser Support

[](#browser-support)

Modern web browser with support for:

- HTML5
- CSS3
- JavaScript (ES6+)

Examples:

- Chrome
- Edge
- Firefox
- Safari

### Optional Tools

[](#optional-tools)

- Node.js
- npm
- Git

Node.js and npm are only required when compiling frontend assets or using frontend build workflows.

---

Installation
------------

[](#installation)

### Recommended

[](#recommended)

Create a new Kattile project using Composer:

```
composer create-project xzilverium/kattile myapp
```

Enter the project:

```
cd myapp
```

Generate the application key:

```
php artisan key:generate
```

Run database migrations:

```
php artisan migrate
```

Start the development server:

```
php artisan serve
```

---

Development Server
------------------

[](#development-server)

Kattile includes Laravel's built-in development server.

```
php artisan serve
```

No external web server is required for local development.

---

Air Commands
------------

[](#air-commands)

### Show Framework Information

[](#show-framework-information)

```
php air --version
```

### List Available Templates

[](#list-available-templates)

```
php air pull
```

### Pull Template File

[](#pull-template-file)

```
php air pull config/brand.php
```

### Pull Template Folder

[](#pull-template-folder)

```
php air pull public/css
```

### Rebrand Project

[](#rebrand-project)

```
php air rebrand
```

---

Template System
---------------

[](#template-system)

Templates are stored within:

```
kvendor/templates/

```

Example:

```
kvendor/templates/config/brand.php
kvendor/templates/public/css/

```

Templates may contain metadata:

```
/**
 * @target config/brand.php
 */
```

or

```
@target-root public/css

```

which allows Air to determine installation locations automatically.

---

Backup System
-------------

[](#backup-system)

When Air overwrites files, backups are created automatically.

Single-file example:

```
backups/config-brand.php.10-45-30.09-06-26.backup

```

Folder example:

```
backups/public-css.10-45-30.09-06-26/

```

---

Branding
--------

[](#branding)

Project branding is configured in:

```
config/brand.php

```

Example:

```
return [
    'name' => env('BRAND_NAME', 'Kattile'),
    'version' => env('BRAND_VERSION', '26.6.1'),
    'description' => env('BRAND_DESCRIPTION', 'The skeleton for Kattile Apps.'),
    'manufacturer' => env('BRAND_MANUFACTURER', 'Xzilverium Realms'),

    'icon' => env('BRAND_ICON', 'icon.svg'),
];
```

---

Versioning
----------

[](#versioning)

Kattile uses a calendar-inspired versioning format.

Example:

```
26.6.1

```

General guideline:

- Patch releases fix bugs
- Minor releases introduce features
- Major releases may contain architectural changes

---

License
-------

[](#license)

Kattile source code is licensed under the MIT License.

See:

```
LICENSE

```

---

Trademarks and Branding
-----------------------

[](#trademarks-and-branding)

Project branding and identity are governed by the Xzilverium Trademark License (XZTML).

See:

```
TRADEMARKS.md

```

The source code remains fully open source under the MIT License.

---

Contributing
------------

[](#contributing)

Contributions, bug reports, documentation improvements, and feature suggestions are welcome.

Please use the project's GitHub repository for issues and pull requests.

---

Credits
-------

[](#credits)

Created and maintained by Xzilverium Realms.

Built upon Laravel and the PHP open-source ecosystem.

###  Health Score

41

—

FairBetter than 87% of packages

Maintenance100

Actively maintained with recent releases

Popularity2

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity48

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% 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

1d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/ed3e1354d67c80ffdc69064f1d42505f575de039c66a677041d9fb547b08c50a?d=identicon)[xzilverium](/maintainers/xzilverium)

---

Top Contributors

[![xzilverium](https://avatars.githubusercontent.com/u/291993247?v=4)](https://github.com/xzilverium "xzilverium (2 commits)")

---

Tags

frameworklaravelkattile

###  Code Quality

TestsPHPUnit

Code StyleLaravel Pint

### Embed Badge

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

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

###  Alternatives

[laravel/laravel

The skeleton application for the Laravel framework.

84.4k62.4M1.0k](/packages/laravel-laravel)[unopim/unopim

UnoPim Laravel PIM

10.1k2.2k](/packages/unopim-unopim)[nasirkhan/laravel-starter

A CMS like modular Laravel starter project.

1.4k2.7k](/packages/nasirkhan-laravel-starter)[codewithdennis/larament

Larament is a time-saving starter kit to quickly launch Laravel 13.x projects. It includes FilamentPHP 5.x pre-installed and configured, along with additional tools and features to streamline your development workflow.

3861.7k](/packages/codewithdennis-larament)[ercogx/laravel-filament-starter-kit

This is a Filament v5 Starter Kit for Laravel 13, designed to accelerate the development of Filament-powered applications.

441.7k](/packages/ercogx-laravel-filament-starter-kit)

PHPackages © 2026

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