4 Commits

Author SHA1 Message Date
jay ada82580a2 Merge origin/main into main
# Conflicts:
#	composer.json
2026-06-12 13:08:30 -04:00
jay 8200ee5d71 Merge origin/main into main
# Conflicts:
#	composer.json
2026-06-12 13:07:27 -04:00
jay 2b41e3164e 0.0.1 2026-06-12 13:06:17 -04:00
jay 3ee64c82d1 Update composer.json 2026-06-05 19:48:22 +00:00
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
+2 -1
View File
@@ -1,9 +1,10 @@
{
"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"
},
+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
{ }