diff --git a/README.md b/README.md index ab05ff6..7c09c2e 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,3 @@ -# Template +# Request -Potter Framework Component Template \ No newline at end of file +Potter Framework Request Interface \ No newline at end of file diff --git a/composer.json b/composer.json index 632d3fd..2b45667 100644 --- a/composer.json +++ b/composer.json @@ -1,14 +1,15 @@ { - "name": "potter/template", - "description": "Potter Framework Component Template", + "name": "potter/request", + "description": "Potter Framework Request Interface", "type": "library", "require": { - "php": "^8.5" + "php": "^8.5", + "psr/http-message": "^2.0" }, "license": "MIT", "autoload": { "psr-4": { - "Potter\\": "src/Potter/" + "Potter\\Request\\": "src/Potter/Request/" } }, "authors": [ diff --git a/src/Potter/Request/RequestInterface.php b/src/Potter/Request/RequestInterface.php new file mode 100644 index 0000000..25aca21 --- /dev/null +++ b/src/Potter/Request/RequestInterface.php @@ -0,0 +1,18 @@ +