Weave Code
Code Weaver
Helps Laravel developers discover, compare, and choose open-source packages. See popularity, security, maintainers, and scores at a glance to make better decisions.
Feedback
Share your thoughts, report bugs, or suggest improvements.
Subject
Message

Net Uri Laravel Package

phrity/net-uri

Lightweight PSR-7 UriInterface and PSR-17 UriFactory implementation not tied to HTTP messaging. Supports any valid scheme plus helpful extras like query item helpers, component access, equals/string/json support, and immutable with* methods.

View on GitHub
Deep Wiki
Context7

Build Status Coverage Status

Introduction

Implementation of the PSR-7 UriInterface and PSR-17 UriFactoryInterface interfaces.

Nothing fancy. Just working. Because I need a URI implementation not hardwired to HTTP messaging. And some extras. Allow all valid schemes.

Installation

Install with Composer;

composer require phrity/net-uri

Uri class methods

Implemts PSR-7 UriInterface and provides some extra metods and options. More info here.

use Phrity\Net\Uri;
$uri = new Uri('http://example.com/path/to/file.html?query1=1#fragment');

// PSR-7 getters
$uri->getScheme();
$uri->getHost();
$uri->getPort();
$uri->getPath();
$uri->getQuery();
$uri->getFragment();
$uri->getAuthority();
$uri->getUserInfo();

// PSR-7 setters
$uri->withScheme('https');
$uri->withHost('example2.com');
$uri->withPort(8080);
$uri->withPath('/path/to/another/file.html');
$uri->withQuery('query2=2');
$uri->withFragment('another-fragment');
$uri->withUserInfo('username', 'password');

// Equalable implementation
$uri->equals('http://example.com/path/to/file.html');

// Stringable implementation
$uri->__toString();

// JsonSerializable implementation
$uri->jsonSerialize();

// Additional methods
$uri->toString();
$uri->getQueryItems();
$uri->getQueryItem('query1');
$uri->withQueryItems(['query1' => '1', 'query2' => '2']);
$uri->withQueryItem('query1', '1');
$uri->getComponents();
$uri->withComponents(['scheme' => 'https', 'host' => 'example2.com']);

UriFactory class methods

Implemts PSR-17 UriFactoryInterface and provides some extra metods and options. More info here.

use Phrity\Net\UriFactory;
$factory = new UriFactory();
$factory->createUri('http://example.com/path/to/file.html');
$factory->createUriFromInterface(new GuzzleHttp\Psr7\Uri('http://example.com/path/to/file.html'));

Modifiers

Out of the box, it will behave as specified by PSR standards. To change behaviour, there are some modifiers available. These can be added as last argument in all get and with methods, plus the toString method.

  • REQUIRE_PORT - Attempt to show port, even if default
  • ABSOLUTE_PATH - Will cause path to use absolute form, i.e. starting with /
  • NORMALIZE_PATH - Will attempt to normalize path
  • IDN_ENCODE / IDN_DECODE - Encode or decode IDN-format for non-ASCII host
  • URI_DECODE / URI_ENCODE / URI_ENCODE_3986 - Encode or decode URI components

Examples

$uri = new Uri('http://example.com');
$uri->getPort(Uri::REQUIRE_PORT); // => 80
$uri->toString(Uri::REQUIRE_PORT); // => 'http://example.com:80'

$uri = new Uri('a/./path/../to//something');
$uri->getPath(Uri::ABSOLUTE_PATH | Uri::NORMALIZE_PATH); // => '/a/to/something'
$uri->toString(Uri::ABSOLUTE_PATH | Uri::NORMALIZE_PATH); // => '/a/to/something'

$clone = $uri->withPath('path/./somewhere/else/..', Uri::ABSOLUTE_PATH | Uri::NORMALIZE_PATH);
$clone->getPath(); // => '/path/somewhere'

$uri = new Uri('https://ηßöø必Дあ.com');
$uri->getHost(Uri::IDN_ENCODE); // => 'xn--zca0cg32z7rau82strvd.com'

Versions

Version PHP
2.2 ^8.1 Equable implementation
2.1 ^8.0 URI encode/decode options
2.0 ^8.0 Query helpers, with([]) and getComponents() methods, IDN encode/decode
1.3 ^7.4|^8.0
1.2 ^7.4|^8.0 IDNA modifier
1.1 ^7.4|^8.0 Require port, Absolute path, Normalize path modifiers
1.0 ^7.4|^8.0 Initial version
Weaver

How can I help you explore Laravel packages today?

Conversation history is not saved when not logged in.
Prompt
Add packages to context
No packages found.
besmartand-pro/php-quality-config
sentix/ai-chatbot
terminal42/code-quality-tools
codifyo/ts-generator-bundle
testo/fiber
mintobit/jobqueue
a4sex/maintenance-bundle
a4sex/entity-date-update
a4sex/client-identifier
a4sex/base-utilites
a4sex/key-value-storage
a4sex/micro-status
chilldev/dependency-injection-extra
datinglibre/datinglibre-app-api
biberltd/corebundle
bricre/symfony-bundle-test
biberltd/logbundle
dominium/http-adapter-bundle
dominium/google-analytics
a4sex/auto-clean-entity