PHPackages                             usbac/wolff - 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. usbac/wolff

ActiveProject[Framework](/categories/framework)

usbac/wolff
===========

Ridiculously small PHP framework

4.1.0(4y ago)21731020[2 issues](https://github.com/Usbac/Wolff/issues)MITPHPPHP &gt;=7.1.0

Since May 12Pushed 4y ago14 watchersCompare

[ Source](https://github.com/Usbac/Wolff)[ Packagist](https://packagist.org/packages/usbac/wolff)[ RSS](/packages/usbac-wolff/feed)WikiDiscussions master Synced 2mo ago

READMEChangelog (10)Dependencies (2)Versions (43)Used By (0)

 [![Wolff logo](https://camo.githubusercontent.com/6692b2bbcc5fd6a6193fc32077210ad6a55ff019fdc01a03b0fddd1f73bdbceb/687474703a2f2f676574776f6c66662e636f6d2f6c6f676f2e706e67)](https://camo.githubusercontent.com/6692b2bbcc5fd6a6193fc32077210ad6a55ff019fdc01a03b0fddd1f73bdbceb/687474703a2f2f676574776f6c66662e636f6d2f6c6f676f2e706e67)
 Wolff

======================================================================================================================================================================================================================================================================================================================================================

[](#------wolff--)

#### Web development made just right.

[](#web-development-made-just-right)

[![](https://camo.githubusercontent.com/0596d5c8122ce138d59ba9505ef9f111609fa2a3aa9845e3fe1a617ed4dd4863/68747470733a2f2f7472617669732d63692e6f72672f55736261632f776f6c66662e7376673f6272616e63683d6d6173746572)](https://camo.githubusercontent.com/0596d5c8122ce138d59ba9505ef9f111609fa2a3aa9845e3fe1a617ed4dd4863/68747470733a2f2f7472617669732d63692e6f72672f55736261632f776f6c66662e7376673f6272616e63683d6d6173746572)[![](https://camo.githubusercontent.com/8da3d7d208aff626a2088b0c3926535a8cc71f9acd5627609fd58b496b1805c2/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f737461626c652d342e312e302d626c75652e737667)](https://camo.githubusercontent.com/8da3d7d208aff626a2088b0c3926535a8cc71f9acd5627609fd58b496b1805c2/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f737461626c652d342e312e302d626c75652e737667)[![](https://camo.githubusercontent.com/2c35df2da25b9f18c8db9916b00354a485470a77c6b52eeaa3c9ca691c64f259/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d6f72616e67652e737667)](https://camo.githubusercontent.com/2c35df2da25b9f18c8db9916b00354a485470a77c6b52eeaa3c9ca691c64f259/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d6f72616e67652e737667)

Wolff is a ridiculously small and lightweight PHP framework, intended for those who want to build web apps without dealing with complexity.

Wolff is the perfect solution for building small and medium-sized web applications.

> **Note:** The core code of the framework is available at [Wolff-framework](https://github.com/usbac/wolff-framework).

Features
--------

[](#features)

📓 **Extremely easy**: It's simple to use and comes ready to be deployed, giving you the opportunity to learn it in just a single night (sleep included).

🚀 **Ridiculously fast**: Due to its simplicity, the framework is able to handle hundreds of requests per second. It's very friendly with potato servers.

🛠️ **Comprenhensive**: It has everything you may need for building a web app, from a handy database abstraction layer to a dynamic template engine.

🦄 **Elegant**: Its source code and interface has been meticulously written, it's expressive and elegant, without depending on a single external dependency.

What's included
---------------

[](#whats-included)

- [**Database abstraction layer**](https://getwolff.com/doc/3.x/db)
- [**DI Container**](https://getwolff.com/doc/3.x/container)
- [**Language manager**](https://getwolff.com/doc/3.x/language)
- [**Routing system**](https://getwolff.com/doc/3.x/routes)
- [**Standard library**](https://getwolff.com/doc/3.x/stdlib)
- [**Template engine**](https://getwolff.com/doc/3.x/template)

And **much** more...

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

[](#requirements)

- PHP version 7.1 or higher
- Composer (Only for installation)

Install
-------

[](#install)

[Composer](https://getcomposer.org/) is required for installing Wolff, once you got it...

Run the following command in the folder where you want Wolff to be installed:

```
composer create-project usbac/wolff

```

This will download the whole project with everything ready to run.

More info about the installation process in the [Docs - install](https://getwolff.com/doc/4/installation) page.

### Bundle

[](#bundle)

*You can also download [here](https://github.com/Usbac/wolff/releases/download/v4.1.0/wolff-bundle.zip) the last bundle ready to be used.*

Example
-------

[](#example)

app/controllers/home.php:

```
‹?php

namespace Controller;

use Wolff\Core\{Language, View};

class Home
{
    public function index($req, $res)
    {
        $data = Language::get('home');
        View::render('home', $data);
    }
}
```

More examples available [here](http://getwolff.com/doc/4/starting).

Testing
-------

[](#testing)

[PHPUnit](https://phpunit.de) is required for the tests, once you got it.

Run the following command with high privileges (sudo) in your wolff project folder:

```
vendor/bin/phpunit

```

*Running the command with high privileges is required since some files will be created during the testing process.*

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

[](#documentation)

First time using it? Read the [Documentation](https://getwolff.com/doc/4/home).

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

[](#contributing)

Any contribution or support to this project in the form of a pull request or message will be highly appreciated. ❤️

You can read more about the contribution process [right here](CONTRIBUTING.md). Don't be shy. :)

License
-------

[](#license)

Wolff is open-source software licensed under the [MIT license](LICENSE).

###  Health Score

37

—

LowBetter than 83% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity31

Limited adoption so far

Community19

Small or concentrated contributor base

Maturity67

Established project with proven stability

 Bus Factor1

Top contributor holds 99.2% 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 ~21 days

Total

42

Last Release

1703d ago

Major Versions

0.9.9.2 → 1.0.02019-06-05

1.10 → 2.02019-12-29

2.x-dev → 3.02020-05-01

3.x-dev → 4.x-dev2021-05-01

4.1.0 → 5.x-dev2021-09-15

PHP version history (2 changes)0.9.9PHP &gt;=7.0.0

4.x-devPHP &gt;=7.1.0

### Community

Maintainers

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

---

Top Contributors

[![Usbac](https://avatars.githubusercontent.com/u/38147742?v=4)](https://github.com/Usbac "Usbac (257 commits)")[![farfromunique](https://avatars.githubusercontent.com/u/4977323?v=4)](https://github.com/farfromunique "farfromunique (1 commits)")[![NicolasCARPi](https://avatars.githubusercontent.com/u/3043706?v=4)](https://github.com/NicolasCARPi "NicolasCARPi (1 commits)")

---

Tags

fastframeworklightweightphpsmallwebphpframeworkwebdbfastappssmallfull

###  Code Quality

TestsPHPUnit

### Embed Badge

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

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

###  Alternatives

[usbac/wolff-framework

Web development made just right

381.2k](/packages/usbac-wolff-framework)

PHPackages © 2026

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