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(10y ago)121MITPHPPHP &gt;=7.0

Since Jun 7Pushed 10y 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 4w 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 26% 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

3675d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/605117?v=4)[Jason](/maintainers/jasonmichels)[@jasonmichels](https://github.com/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.8k532.1M19.4k](/packages/laravel-framework)[symfony/symfony

The Symfony PHP framework

31.4k86.9M2.2k](/packages/symfony-symfony)[shopware/platform

The Shopware e-commerce core

3.4k1.5M3](/packages/shopware-platform)[drupal/core

Drupal is an open source content management platform powering millions of websites and applications.

19664.8M1.6k](/packages/drupal-core)[sulu/sulu

Core framework that implements the functionality of the Sulu content management system

1.3k1.4M196](/packages/sulu-sulu)[drupal/core-recommended

Locked core dependencies; require this project INSTEAD OF drupal/core.

6941.5M398](/packages/drupal-core-recommended)

PHPackages © 2026

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