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
Potter Framework Uri Interface
Potter Framework Uri Implementation
+3 -2
View File
@@ -1,11 +1,12 @@
{
"name": "potter/uri",
"description": "Potter Framework Uri Template",
"description": "Potter Framework Uri Implementation",
"type": "library",
"require": {
"php": "^8.5",
"guzzlehttp/psr7": "^2.11",
"psr/http-message": "^2.0",
"potter/stringable": "^0.0.1"
"potter/stringable": "^0.0.1"
},
"license": "MIT",
"autoload": {
+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
{ }