PHPackages                             angel-project/framework - 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. angel-project/framework

ActiveLibrary[Framework](/categories/framework)

angel-project/framework
=======================

the actual angel framework.

v0.0.5(8y ago)2751MIT

Since Feb 9Compare

[ Source](https://github.com/angel-project/framework)[ Packagist](https://packagist.org/packages/angel-project/framework)[ RSS](/packages/angel-project-framework/feed)WikiDiscussions Synced 3d ago

READMEChangelog (5)Dependencies (2)Versions (6)Used By (0)

[![](https://camo.githubusercontent.com/22eb9b49b4a31eb8c3d8c501ea678d2c14ddf997c3158c827129c2a9e1047b6b/68747470733a2f2f78792e7a756767722e636f6d2f66696c652f616e67656c2e6a7067)](https://camo.githubusercontent.com/22eb9b49b4a31eb8c3d8c501ea678d2c14ddf997c3158c827129c2a9e1047b6b/68747470733a2f2f78792e7a756767722e636f6d2f66696c652f616e67656c2e6a7067)

**Angel** is a lean PHP framework that focuses on **rapid prototyping** for web applications.

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

[](#installation)

**Install** with Composer using the following command:

```
composer create-project angel-project/framework .

```

[![GitHub php](https://camo.githubusercontent.com/754039e2dfe298e39a6cb74c56f9c9191d53755a6df3f0c7033c998d938c0099/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f7068702d762f73796d666f6e792f73796d666f6e792e737667)](https://camo.githubusercontent.com/754039e2dfe298e39a6cb74c56f9c9191d53755a6df3f0c7033c998d938c0099/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f7068702d762f73796d666f6e792f73796d666f6e792e737667)[![GitHub license](https://camo.githubusercontent.com/e613ab3c2d83fd60009d0a4f2d2a7493048d63e7ddf28730e2825721b80bf7aa/68747470733a2f2f696d672e736869656c64732e696f2f636f636f61706f64732f6c2f41464e6574776f726b696e672e737667)](https://camo.githubusercontent.com/e613ab3c2d83fd60009d0a4f2d2a7493048d63e7ddf28730e2825721b80bf7aa/68747470733a2f2f696d672e736869656c64732e696f2f636f636f61706f64732f6c2f41464e6574776f726b696e672e737667)

Server Setup
------------

[](#server-setup)

If you are running a **Nginx** server, add the following line in **nginx.conf** to enable URI redirect and restart server.

```
location / {
  index index.php index.html;
  try_files $uri/ $uri /index.php?$query_string;
}
```

For **Apache** servers, first, uncomment the following line in **httpd.conf**.

```
LoadModule rewrite_module lib/httpd/modules/mod_rewrite.so
```

Then, add the following line and restart server.

```

	RewriteEngine on
	RewriteRule "(.*)" "index.php?$1" [PT,QSA]

```

Getting Started
---------------

[](#getting-started)

Create your first page using **build::get()** module. Create a PHP file name hello\_world.php, under folder /build.

```
build::get("angel/[input]", function($input){
  echo "angel".$input."!";
});
```

As shown above, build::get() method contains two parameters:

- a router: **yoursite.com/hello/\[a\_variable\_name\_input\]**, variables in url are defined by **\[brackets\]**.
- a function: a block of code (codeblock) that will execute when user visits the router's path using GET request.

So now, if you visit **yoursite.com/angel/fly**:

```
angel fly!

```

Documentation
-------------

[](#documentation)

Read our [wiki](https://github.com/angel-framework/project/wiki) on GitHub!

Roadmap
-------

[](#roadmap)

- Support Apache URI configuration
- Add welcome page
- Documentation
- Improve image processing capability: (resize, crop, blur, and watermark)
- math:: module
- ...

###  Health Score

28

—

LowBetter than 52% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity17

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity57

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 97.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

Every ~31 days

Total

5

Last Release

2939d ago

### Community

Maintainers

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

---

Top Contributors

[![zimo-xiao](https://avatars.githubusercontent.com/u/34933627?v=4)](https://github.com/zimo-xiao "zimo-xiao (33 commits)")[![MadaoIsMyBrother](https://avatars.githubusercontent.com/u/34904199?v=4)](https://github.com/MadaoIsMyBrother "MadaoIsMyBrother (1 commits)")

### Embed Badge

![Health badge](/badges/angel-project-framework/health.svg)

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

###  Alternatives

[tempest/framework

The PHP framework that gets out of your way.

2.2k34.4k14](/packages/tempest-framework)[getkirby/cms

The Kirby core

1.5k584.8k462](/packages/getkirby-cms)[bowphp/framework

The bow PHP Framework

6017.5k13](/packages/bowphp-framework)[alleyinteractive/mantle-framework

A framework for powerful WordPress development

28325.2k2](/packages/alleyinteractive-mantle-framework)[letsdrink/ouzo

Ouzo PHP MVC framework

7210.7k1](/packages/letsdrink-ouzo)

PHPackages © 2026

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