File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # Changelog
2+ All notable changes to this project will be documented in this file.
3+
4+ The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
5+ and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
6+
7+ ## [ 0.1.0] - 2022-12-28
8+ - Initial release
Original file line number Diff line number Diff line change 1+ # urimanage
2+ A library to parse, format and modify URIs following the [ PSR-7 URI interface] ( https://www.php-fig.org/psr/psr-7/] )
3+
4+ ## Installation
5+ Install via [ composer] ( https://getcomposer.org ) :
6+ ```
7+ composer require urimanage/urimanage
8+ ```
9+
10+ ## Simple Usage
11+ ``` php
12+ $uri = new \UriManage\Uri('https://github.com/filecage/urimanage');
13+
14+ echo $uri->getScheme(); // https
15+ echo $uri->getHost(); // github.com
16+ echo $uri->getPath(); // /filecage/urimanage
17+ echo $uri->isAbsolute(); // true
18+ ```
19+
20+ ## Full API Reference
21+ For a full reference of all available methods supported by PSR-7, please
22+ [ see here] ( https://github.com/php-fig/http-message/blob/efd67d1dc14a7ef4fc4e518e7dee91c271d524e4/docs/PSR7-Interfaces.md#psrhttpmessageuriinterface-methods ) .
You can’t perform that action at this time.
0 commit comments