Compare commits

...

2 Commits

Author SHA1 Message Date
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
3 changed files with 13 additions and 2 deletions
+1 -1
View File
@@ -1,3 +1,3 @@
# Uri
Potter Framework Uri Interface
Potter Framework Uri Implementation
+2 -1
View File
@@ -4,8 +4,9 @@
"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
{ }