From c38310faf7daeaaa33299838d0fbcf6aa3ace681 Mon Sep 17 00:00:00 2001 From: jay Date: Fri, 5 Jun 2026 15:46:29 -0400 Subject: [PATCH] 0.0.1 --- README.md | 4 ++-- composer.json | 10 ++++++---- src/Potter/Uri/UriFragmentInterface.php | 13 +++++++++++++ src/Potter/Uri/UriHostInterface.php | 13 +++++++++++++ src/Potter/Uri/UriInterface.php | 17 +++++++++++++++++ src/Potter/Uri/UriPathInterface.php | 13 +++++++++++++ src/Potter/Uri/UriPortInterface.php | 13 +++++++++++++ src/Potter/Uri/UriQueryInterface.php | 13 +++++++++++++ src/Potter/Uri/UriSchemeInterface.php | 13 +++++++++++++ src/Potter/Uri/UriUserInterface.php | 13 +++++++++++++ 10 files changed, 116 insertions(+), 6 deletions(-) create mode 100644 src/Potter/Uri/UriFragmentInterface.php create mode 100644 src/Potter/Uri/UriHostInterface.php create mode 100644 src/Potter/Uri/UriInterface.php create mode 100644 src/Potter/Uri/UriPathInterface.php create mode 100644 src/Potter/Uri/UriPortInterface.php create mode 100644 src/Potter/Uri/UriQueryInterface.php create mode 100644 src/Potter/Uri/UriSchemeInterface.php create mode 100644 src/Potter/Uri/UriUserInterface.php diff --git a/README.md b/README.md index ab05ff6..94821be 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,3 @@ -# Template +# Uri -Potter Framework Component Template \ No newline at end of file +Potter Framework Uri Interface \ No newline at end of file diff --git a/composer.json b/composer.json index 632d3fd..2a3a248 100644 --- a/composer.json +++ b/composer.json @@ -1,14 +1,16 @@ { - "name": "potter/template", - "description": "Potter Framework Component Template", + "name": "potter/uri", + "description": "Potter Framework Uri Template", "type": "library", "require": { - "php": "^8.5" + "php": "^8.5", + "psr/http-message": "^2.0", + "potter/stringable": "^0.0.1" }, "license": "MIT", "autoload": { "psr-4": { - "Potter\\": "src/Potter/" + "Potter\\Uri\\": "src/Potter/Uri/" } }, "authors": [ diff --git a/src/Potter/Uri/UriFragmentInterface.php b/src/Potter/Uri/UriFragmentInterface.php new file mode 100644 index 0000000..6e9f91b --- /dev/null +++ b/src/Potter/Uri/UriFragmentInterface.php @@ -0,0 +1,13 @@ +