PHPackages                             jasonmichels/lift-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. jasonmichels/lift-framework

ActiveLibrary[Framework](/categories/framework)

jasonmichels/lift-framework
===========================

Lift is a PHP 7 micro framework for building microservices

0.0.1(9y ago)121MITPHPPHP &gt;=7.0

Since Jun 7Pushed 9y ago2 watchersCompare

[ Source](https://github.com/jasonmichels/lift-framework)[ Packagist](https://packagist.org/packages/jasonmichels/lift-framework)[ RSS](/packages/jasonmichels-lift-framework/feed)WikiDiscussions master Synced 2mo ago

READMEChangelogDependencies (10)Versions (3)Used By (0)

### Lift - PHP 7 micro framework

[](#lift---php-7-micro-framework)

### Introduction

[](#introduction)

Lift is an opinionated PHP 7 micro framework

### Example

[](#example)

```
declare(strict_types=1);
require('../vendor/autoload.php');

use Lift\Framework\App;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\JsonResponse;
use Lift\Framework\Http\Response;

function getHomepage(Request $request): JsonResponse {
    $response = Response\json();
    $response->setData(['data' => ['stuff' => 'is awesome']]);
    return $response;
}

function getUserHandler (Request $request, array $args): JsonResponse {
    $response = Response\json();
    $response->setData(['data' => ['userId' => $args['id'], 'username' => 'Jason Michels']]);
    return $response;
}

$app = new App();

$routes = [
    ['httpMethod' => Request::METHOD_GET, 'route' => '/', 'handler' => 'getHomepage'],
    ['httpMethod' => Request::METHOD_GET, 'route' => '/user/{id:\d+}', 'handler' => 'getUserHandler']
];

$app->run($routes);
```

### Testing

[](#testing)

```
$ phpunit
```

- Be Awesome!

### Language

[](#language)

- PHP 7

### License

[](#license)

GroundworkPHP is open-sourced software licensed under the [MIT license](http://opensource.org/licenses/MIT)

Authors
-------

[](#authors)

- Jason Michels

###  Health Score

23

—

LowBetter than 27% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity49

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

3625d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/0ffe2c2dd08d5b3e0f270d8007edaf7f29e31658c70a5b99772a231b9559b863?d=identicon)[jasonmichels](/maintainers/jasonmichels)

---

Top Contributors

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

---

Tags

phpframeworkPHP7lift

###  Code Quality

TestsPHPUnit

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/jasonmichels-lift-framework/health.svg)

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

###  Alternatives

[laravel/framework

The Laravel Framework.

34.6k509.9M17.0k](/packages/laravel-framework)[fuel/fuel

FuelPHP is a simple, flexible, community driven PHP 5.4+ framework, based on the best ideas of other frameworks, with a fresh start!

1.5k42.3k](/packages/fuel-fuel)[contao-community-alliance/dc-general

Universal data container for Contao

1578.3k86](/packages/contao-community-alliance-dc-general)

PHPackages © 2026

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