PHPackages                             derilkillms/request - 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. [HTTP &amp; Networking](/categories/http)
4. /
5. derilkillms/request

ActiveLibrary[HTTP &amp; Networking](/categories/http)

derilkillms/request
===================

Simple secure request wrapper for PHP

v1.0.1(10mo ago)02MITPHPPHP &gt;=7.4

Since Aug 29Pushed 10mo agoCompare

[ Source](https://github.com/derilkillms/request)[ Packagist](https://packagist.org/packages/derilkillms/request)[ RSS](/packages/derilkillms-request/feed)WikiDiscussions main Synced today

READMEChangelogDependenciesVersions (3)Used By (0)

Request
=======

[](#request)

Instalation
-----------

[](#instalation)

```
composer require derilkillms/request

```

### Information

[](#information)

**Request methods : ([wikipedia](https://en.wikipedia.org/wiki/HTTP#Request_methods))**HTTP defines methods (sometimes referred to as verbs, but nowhere in the specification does it mention verb) to indicate the desired action to be performed on the identified resource. What this resource represents, whether pre-existing data or data that is generated dynamically, depends on the implementation of the server. Often, the resource corresponds to a file or the output of an executable residing on the server. The HTTP/1.0 specification\[49\] defined the GET, HEAD, and POST methods as well as listing the PUT, DELETE, LINK and UNLINK methods under additional methods. However, the HTTP/1.1 specification\[50\] formally defined and added five new methods: PUT, DELETE, CONNECT, OPTIONS, and TRACE. Any client can use any method and the server can be configured to support any combination of methods. If a method is unknown to an intermediate, it will be treated as an unsafe and non-idempotent method. There is no limit to the number of methods that can be defined, which allows for future methods to be specified without breaking existing infrastructure. For example, WebDAV defined seven new methods and RFC 5789 specified the PATCH method..

....

**This Repository Based : PHP**

```
require __DIR__ . '/vendor/autoload.php';

use Derilkillms\Http\Request;

session_start();
$request = new Request();

// Cek method
echo $request->method(); // ex: POST

// GET
$id = $request->get('id');

// POST
$username = $request->post('username');

// PUT
$payload = $request->put();

// PATCH
$title = $request->patch('title');

// DELETE
$itemId = $request->delete('id');

// SESSION
$request->setSession('user_id', 42);
echo $request->session('user_id');

// Ambil semua data sesuai method aktif
$data = $request->all();
```

###  Health Score

26

—

LowBetter than 41% of packages

Maintenance54

Moderate activity, may be stable

Popularity2

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity37

Early-stage or recently created project

 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

Every ~0 days

Total

2

Last Release

309d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/49135753?v=4)[Muhammad Deril](/maintainers/derilkillms)[@derilkillms](https://github.com/derilkillms)

---

Top Contributors

[![derilkillms](https://avatars.githubusercontent.com/u/49135753?v=4)](https://github.com/derilkillms "derilkillms (3 commits)")

### Embed Badge

![Health badge](/badges/derilkillms-request/health.svg)

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

###  Alternatives

[php-http/cache-plugin

PSR-6 Cache plugin for HTTPlug

25126.1M82](/packages/php-http-cache-plugin)[illuminate/http

The Illuminate Http package.

11937.9M6.9k](/packages/illuminate-http)[rdkafka/rdkafka

A PHP extension for Kafka

2.2k24.3k1](/packages/rdkafka-rdkafka)[httpsoft/http-message

Strict and fast implementation of PSR-7 and PSR-17

87965.9k114](/packages/httpsoft-http-message)[mezzio/mezzio-router

Router subcomponent for Mezzio

265.4M92](/packages/mezzio-mezzio-router)[serpapi/google-search-results-php

Get Google, Bing, Baidu, Ebay, Yahoo, Yandex, Home depot, Naver, Apple, Duckduckgo, Youtube search results via SerpApi.com

69127.2k](/packages/serpapi-google-search-results-php)

PHPackages © 2026

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