PHPackages                             bimacoding/alza - 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. bimacoding/alza

ActiveProject[Framework](/categories/framework)

bimacoding/alza
===============

A simple framework for PHP

v3.0.2(3y ago)111MITPHPPHP ^7.3|^8.0

Since Dec 6Pushed 3y ago1 watchersCompare

[ Source](https://github.com/bimacoding/alza)[ Packagist](https://packagist.org/packages/bimacoding/alza)[ Docs](https://github.com/bimacoding/alza)[ RSS](/packages/bimacoding-alza/feed)WikiDiscussions master Synced 1mo ago

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

alza
====

[](#alza)

```
        _
  __ _ | | ____  __ _
 / _` || ||_  / / _` |
| (_| || | / / | (_| |
 \__,_||_|/___| \__,_|

```

alza - simple framework for PHP

[![Total Downloads](https://camo.githubusercontent.com/51d828edb7159c91df51878d7adf6bb5057288325f06b0868b7824f9a522436b/68747470733a2f2f706f7365722e707567782e6f72672f62696d61636f64696e672f616c7a612d636f72652f642f746f74616c2e737667)](https://packagist.org/packages/bimacoding/alza)[![Latest Stable Version](https://camo.githubusercontent.com/99134ab33f2aca4f071a28bbd01b993499c744750223c3af82384286fa345f7b/68747470733a2f2f706f7365722e707567782e6f72672f62696d61636f64696e672f616c7a612d636f72652f762f737461626c652e737667)](https://packagist.org/packages/bimacoding/alza)[![Latest Unstable Version](https://camo.githubusercontent.com/be2877dd62d5ce47ceb3e4df5781178feaa85a09e0cc22edbba85863eb773af4/68747470733a2f2f706f7365722e707567782e6f72672f62696d61636f64696e672f616c7a612d636f72652f762f756e737461626c652e737667)](https://packagist.org/packages/bimacoding/alza)[![License](https://camo.githubusercontent.com/7784d2be352aa93e33afd8163e80fb5792cee992827e7e556fb10537fa899ffe/68747470733a2f2f706f7365722e707567782e6f72672f62696d61636f64696e672f616c7a612f6c6963656e73652e737667)](https://packagist.org/packages/bimacoding/alza)

> Alza Framework telah dibuat hanya untuk bersenang-senang dan diadaptasi dengan menggunakan beberapa bagian paling populer dari &gt;Framework PHP populer seperti Laravel dan Symfony. Ini memiliki infrastruktur yang sederhana namun kuat. Ini berisi banyak komponen &gt;untuk menyiapkan aplikasi web. Jadi, Ini bisa menjadi preferensi untuk proyek kecil (mungkin menengah) Anda. Jika Anda mengatakan "Saya &gt;akan membuat proyek yang lebih besar.", Saya sarankan Anda menggunakan kerangka kerja full-stack. :) misalnya: Laravel, Symfony

### features

[](#features)

- Model - View - Controller
- Easy command line application support. *(Alza Cli App)*
- Routing component. ([PHP-Router](https://github.com/bimacoding/php-router))
- **Symfony** Request and Response components. ([Symfony HttpFoundation](https://symfony.com/doc/current/components/http_foundation.html))
- PDOx Query Builder. ([PDOx](https://github.com/bimacoding/pdox))
- Authentication component. (with **JWT** and **Basic Auth**)
- Some **Laravel 8.x** Packages supports.
    - Eloquent ORM support. ([Laravel Eloquent ORM](https://laravel.com/docs/eloquent))
    - Laravel Query Builder support. ([Laravel Query Builder](https://laravel.com/docs/queries))
    - Blade Template Engine support. ([Laravel Blade](https://laravel.com/docs/blade))
    - Laravel Localization Support (with Translate) [Laravel Localization](https://laravel.com/docs/localization)
    - Laravel Eloquent Migration System support with PHPMig. ([Laravel Migration](https://laravel.com/docs/migrations) - [PHPMig](https://github.com/bimacoding/alza-migration))
    - Laravel Cache support. (currently just File, Array and Database drivers.) ([Laravel Cache](https://laravel.com/docs/cache))
    - Laravel Hash and Encrypt support. ([Laravel Hashing](https://laravel.com/docs/hashing))
    - Collections support. ([Laravel Collections](https://laravel.com/docs/collections))
    - Useful Array and String helpers. (Arr, Str and more...) ([Laravel Helpers](https://laravel.com/docs/helpers))
- Mail Component. ([PHPMailer](https://github.com/PHPMailer/PHPMailer))
- Events/Listeners
- Basic Logger
- Request Validation
- Html/Form Builder
- and more...

alza core
---------

[](#alza-core)

If you want to examine Alza's core files, you can follow this link:

[bimacoding/alza-core](https://github.com/bimacoding/alza-core)

server requirements
-------------------

[](#server-requirements)

- PHP &gt;= ^7.3|^8.0
- OpenSSL PHP Extension
- PDO PHP Extension
- Mbstring PHP Extension
- Tokenizer PHP Extension
- XML PHP Extension
- Ctype PHP Extension
- JSON PHP Extension
- Fileinfo PHP Extension
- BCMath PHP Extension

install
-------

[](#install)

create project via `composer` (`app` is application folder name):

```
$ composer create-project bimacoding/alza your-app
$ cd your-app
$ php alza serve

```

or run the following command directly.

```
$ git clone https://github.com/bimacoding/alza.git
$ cd alza
$ composer install
$ php alza serve

```

Okay, you can see your application on the browser. (127.0.0.1:8000)

docs
----

[](#docs)

documentation page: alza docs (coming soon...)

todo
----

[](#todo)

- Write documentation
- Write test
- Write example project

support
-------

[](#support)

[bimacoding's homepage](https://burakdemirtas.org)

[bimacoding's twitter](https://twitter.com/bimacoding)

contributing
------------

[](#contributing)

1. fork it [Alza Framework](https://github.com/bimacoding/alza/fork) or [Alza Framework Core](https://github.com/bimacoding/alza-core/fork) (for core changes)
2. create your feature branch (git checkout -b my-new-feature)
3. commit your changes (git commit -am 'Add some feature')
4. push to the branch (git push origin my-new-feature)
5. create a new Pull Request

contributors
------------

[](#contributors)

- [bimacoding](https://github.com/bimacoding) arif iik - creator, maintainer

###  Health Score

23

—

LowBetter than 27% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity51

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

1258d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/5b156c8695cdca5806090f543f6d59128c24593175a033f905302985f98a0212?d=identicon)[bimacoding](/maintainers/bimacoding)

---

Top Contributors

[![bimacoding](https://avatars.githubusercontent.com/u/61307168?v=4)](https://github.com/bimacoding "bimacoding (8 commits)")

---

Tags

phpframeworkSimplebasicalza

### Embed Badge

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

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

PHPackages © 2026

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