PHPackages                             ceus-media/rest - 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. [API Development](/categories/api)
4. /
5. ceus-media/rest

ActiveLibrary[API Development](/categories/api)

ceus-media/rest
===============

0.4.0(1y ago)03971GPL-3.0+PHPPHP ^8.1

Since Oct 12Pushed 1y ago1 watchersCompare

[ Source](https://github.com/CeusMedia/REST)[ Packagist](https://packagist.org/packages/ceus-media/rest)[ RSS](/packages/ceus-media-rest/feed)WikiDiscussions master Synced 2mo ago

READMEChangelog (2)Dependencies (8)Versions (11)Used By (1)

REST
====

[](#rest)

[![Branch](https://camo.githubusercontent.com/083d5e3480423bbf3beb795ac51c6c9e68156bfb3d68ffd46641cb856b9a3f2b/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4272616e63682d302e342e782d626c75653f7374796c653d666c61742d737175617265)](https://camo.githubusercontent.com/083d5e3480423bbf3beb795ac51c6c9e68156bfb3d68ffd46641cb856b9a3f2b/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4272616e63682d302e342e782d626c75653f7374796c653d666c61742d737175617265)[![Release](https://camo.githubusercontent.com/026ddd65ab1aadbe025c4c30b2833e44118d119bd1a28e5a5bbc5c3098a1a2be/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f52656c656173652d302e342e302d626c75653f7374796c653d666c61742d737175617265)](https://camo.githubusercontent.com/026ddd65ab1aadbe025c4c30b2833e44118d119bd1a28e5a5bbc5c3098a1a2be/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f52656c656173652d302e342e302d626c75653f7374796c653d666c61742d737175617265)[![PHP version](https://camo.githubusercontent.com/7ebb0279547d526a54d318d9ab47d214fc6a36936050d77b00e120c3ce9db3f1/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5048502d253545382e312d626c75653f7374796c653d666c61742d73717561726526636f6c6f723d373737424234)](https://camo.githubusercontent.com/7ebb0279547d526a54d318d9ab47d214fc6a36936050d77b00e120c3ce9db3f1/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5048502d253545382e312d626c75653f7374796c653d666c61742d73717561726526636f6c6f723d373737424234)[![PHPStan level](https://camo.githubusercontent.com/9984e4473ea56a498868ac5a3ffe61ded3a318f72f3deac309709cd1324b9263/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5048505374616e5f6c6576656c2d6d61782b7374726963742d6461726b677265656e3f7374796c653d666c61742d737175617265)](https://camo.githubusercontent.com/9984e4473ea56a498868ac5a3ffe61ded3a318f72f3deac309709cd1324b9263/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5048505374616e5f6c6576656c2d6d61782b7374726963742d6461726b677265656e3f7374796c653d666c61742d737175617265)

HTTP RESTful Server and Client implemented in PHP.

Examples
--------

[](#examples)

### Server

[](#server)

```
use CeusMedia\REST;
use CeusMedia\Router;

$server	= new REST\Server( [
	'forceMimeType' => 'application/json',
] );
$server->addRouterRegistrySource( new Router\Registry\Source\JsonFile( 'routes.json' ) );
$server->handleRequest();

```

### Client

[](#client)

```
$baseUri	= 'https://mydomain.tld/path/to/server/';

$client	= new \CeusMedia\REST\Client( $baseUri );
$client->expectFormat( 'JSON' );

try{
	$data = $client->get( 'resource/path?argument=value' );
	print_r( $data );
}
catch( Exception $e ){
	print \CeusMedia\Common\UI\HTML\Exception\Page::display( $e );
}

```

###  Health Score

36

—

LowBetter than 82% of packages

Maintenance40

Moderate activity, may be stable

Popularity12

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity68

Established project with proven stability

 Bus Factor1

Top contributor holds 91.8% 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 ~338 days

Recently: every ~357 days

Total

10

Last Release

457d ago

PHP version history (5 changes)0.1PHP &gt;=5.3.0

0.2.3PHP ^5.3 || ^7

0.3PHP &gt;=7.3

0.4.0PHP ^8.1

0.5.x-devPHP ^8.3

### Community

Maintainers

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

---

Top Contributors

[![kriss0r](https://avatars.githubusercontent.com/u/476914?v=4)](https://github.com/kriss0r "kriss0r (112 commits)")[![cwuerker-c24](https://avatars.githubusercontent.com/u/155151774?v=4)](https://github.com/cwuerker-c24 "cwuerker-c24 (10 commits)")

###  Code Quality

TestsPHPUnit

Static AnalysisPHPStan

Type Coverage Yes

### Embed Badge

![Health badge](/badges/ceus-media-rest/health.svg)

```
[![Health](https://phpackages.com/badges/ceus-media-rest/health.svg)](https://phpackages.com/packages/ceus-media-rest)
```

###  Alternatives

[stripe/stripe-php

Stripe PHP Library

4.0k143.3M480](/packages/stripe-stripe-php)[twilio/sdk

A PHP wrapper for Twilio's API

1.6k92.9M272](/packages/twilio-sdk)[knplabs/github-api

GitHub API v3 client

2.2k15.8M187](/packages/knplabs-github-api)[facebook/php-business-sdk

PHP SDK for Facebook Business

90121.9M34](/packages/facebook-php-business-sdk)[meilisearch/meilisearch-php

PHP wrapper for the Meilisearch API

73813.7M114](/packages/meilisearch-meilisearch-php)[google/gax

Google API Core for PHP

263103.1M454](/packages/google-gax)

PHPackages © 2026

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