PHPackages                             sukohi/warp - 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. sukohi/warp

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

sukohi/warp
===========

A PHP package mainly developed for Laravel to remember URLs to redirect through session.

2.0.3(10y ago)035MITPHP

Since Jun 8Pushed 10y ago1 watchersCompare

[ Source](https://github.com/SUKOHI/Warp)[ Packagist](https://packagist.org/packages/sukohi/warp)[ RSS](/packages/sukohi-warp/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (1)Versions (11)Used By (0)

Warp
====

[](#warp)

A PHP package mainly developed for Laravel to remember URLs to redirect through session.
(This is for Laravel 5+. [For Laravel 4.2](https://github.com/SUKOHI/Warp/tree/1.0))

Installation
============

[](#installation)

Add this package name in composer.json

```
"require": {
  "sukohi/Warp": "2.*"
}

```

Execute composer command.

```
composer update

```

Register the service provider in app.php

```
'providers' => [
    ...Others...,
    Sukohi\Warp\WarpServiceProvider::class,
]

```

Also alias

```
'aliases' => [
    ...Others...,
    'Warp'   => Sukohi\Warp\Facades\Warp::class
]

```

Usage
=====

[](#usage)

```
\Warp::set('my_place');
\Warp::set('my_place', $current_url = '');  // or You can set URL you want to keep.

// After moving some pages

$url = \Warp::get('my_place');
$url = \Warp::get('my_place', $alternative_url = 'http://example.com');    // You also can set alternative(default) URL.
$url = \Warp::get('my_place', $alternative_url, $forget_flag = true);      // If $forget_flag is false, URL you set will not be removed.

```

with Route name
===============

[](#with-route-name)

```
Warp::set('your.route.name');   // the argument is optional. If in the case, route name automatically will be set.

// After moving some pages

$url = Warp::route('your.route.name');

```

License
=======

[](#license)

This package is licensed under the MIT License.

Copyright 2015 Sukohi Kuhoh

###  Health Score

29

—

LowBetter than 59% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity69

Established project with proven stability

 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 ~35 days

Recently: every ~50 days

Total

10

Last Release

3682d ago

Major Versions

1.0.0 → 2.0.02015-08-11

1.0.1 → 2.0.12015-09-25

1.0.3 → 2.0.32016-04-18

### Community

Maintainers

![](https://www.gravatar.com/avatar/2980d59b309d45df3f2e6e51b1d336614da063240b8f76f873f287cd745ec5db?d=identicon)[Sukohi](/maintainers/Sukohi)

---

Top Contributors

[![SUKOHI](https://avatars.githubusercontent.com/u/5362394?v=4)](https://github.com/SUKOHI "SUKOHI (1 commits)")

### Embed Badge

![Health badge](/badges/sukohi-warp/health.svg)

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

###  Alternatives

[binaryk/laravel-restify

Laravel REST API helpers

651399.1k](/packages/binaryk-laravel-restify)[namu/wirechat

A Laravel Livewire messaging app for teams with private chats and group conversations.

54324.5k](/packages/namu-wirechat)[lomkit/laravel-rest-api

A package to build quick and robust rest api for the Laravel framework.

59152.2k](/packages/lomkit-laravel-rest-api)[wirechat/wirechat

A Laravel Livewire messaging app for teams with private chats and group conversations.

5434.7k](/packages/wirechat-wirechat)[api-platform/laravel

API Platform support for Laravel

59126.4k6](/packages/api-platform-laravel)[georgeboot/laravel-echo-api-gateway

Use Laravel Echo with API Gateway Websockets

10435.5k](/packages/georgeboot-laravel-echo-api-gateway)

PHPackages © 2026

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