ejunker / laravel-purl by ejunker

A Laravel package for the Purl URL manipulation library.
7,905
0
2
Package Data
Maintainer Username: ejunker
Maintainer Contact: ejunker@gmail.com (Eric Junker)
Package Create Date: 2014-08-05
Package Last Update: 2014-08-14
Language: PHP
License: Unknown
Last Refreshed: 2024-11-23 03:10:13
Package Statistics
Total Downloads: 7,905
Monthly Downloads: 2
Daily Downloads: 0
Total Stars: 0
Total Watchers: 2
Total Forks: 0
Total Open Issues: 0

Laravel Purl

Software License Build Status Coverage Status Quality Score Total Downloads

A Laravel package for the Purl URL manipulation library. For information on how to use Purl, see the Purl Documentation.

Installation

Require this package in your composer.json and update composer.

"ejunker/laravel-purl": "0.1.*"

After updating composer, add the ServiceProvider to the providers array in app/config/app.php

'Ejunker\LaravelPurl\ServiceProvider',

You can optionally use the facade for shorter code. Add this to your facades:

'Purl' => 'Ejunker\LaravelPurl\Facade',

Examples

// Create a \Purl\Url object from a string
$url = Purl::make('http://www.laravel.com');

// Same as Request::url() but as a \Purl\Url object
$url = Purl::requestUrl();

// Same as Request::root() but as a \Purl\Url object
$url = Purl::requestRoot();

// Same as Request::fullUrl() but as a \Purl\Url object
$url = Purl::requestFullUrl();