This commit is contained in:
2026-06-12 13:06:17 -04:00
parent c38310faf7
commit 2b41e3164e
3 changed files with 14 additions and 3 deletions
+1 -1
View File
@@ -1,3 +1,3 @@
# Uri # Uri
Potter Framework Uri Interface Potter Framework Uri Implementation
+2 -1
View File
@@ -1,9 +1,10 @@
{ {
"name": "potter/uri", "name": "potter/uri",
"description": "Potter Framework Uri Template", "description": "Potter Framework Uri Implementation",
"type": "library", "type": "library",
"require": { "require": {
"php": "^8.5", "php": "^8.5",
"guzzlehttp/psr7": "^2.11",
"psr/http-message": "^2.0", "psr/http-message": "^2.0",
"potter/stringable": "^0.0.1" "potter/stringable": "^0.0.1"
}, },
+10
View File
@@ -0,0 +1,10 @@
<?php
declare(strict_types=1);
namespace Potter\Uri;
use \GuzzleHttp\Psr7\Uri as BaseUri;
class Uri extends BaseUri implements UriInterface
{ }