This commit is contained in:
2026-03-21 20:20:45 -04:00
parent 7db69eb52e
commit 42896b96f8
4 changed files with 5 additions and 21 deletions

View File

@@ -1,3 +1,3 @@
# Potter Framework Component Template # Potter Framework HTTP Router
Hello World Hello World

View File

@@ -1,9 +1,9 @@
{ {
"name": "potter/template", "name": "potter/http-router",
"description": "Potter Framework Component Template", "description": "Potter Framework HTTP Router",
"version": "1.0.0", "version": "1.0.0",
"type": "library", "type": "library",
"homepage": "https://gitpotter.com/Potter/Template", "homepage": "https://gitpotter.com/Potter/Http-Router",
"license": "MIT", "license": "MIT",
"authors": [ "authors": [
{ {
@@ -14,7 +14,7 @@
], ],
"autoload": { "autoload": {
"psr-4": { "psr-4": {
"Potter\\Template\\": "src/Potter/Template/" "Potter\\Http\\": "src/Potter/Http/"
} }
}, },
"minimum-stability": "stable", "minimum-stability": "stable",

View File

@@ -1,8 +0,0 @@
<?php
declare(strict_types=1);
namespace Potter\Template;
interface TemplateInterface
{ }

View File

@@ -1,8 +0,0 @@
<?php
declare(strict_types=1);
namespace Potter\Template;
trait TemplateTrait
{ }