From c17ebf7fd827cbb774ae61e96ed138bd8d3e4243 Mon Sep 17 00:00:00 2001 From: prettysunflower Date: Mon, 21 Jul 2025 17:29:55 -0400 Subject: [PATCH] feat(template): Added template variables for Gitea Signed-off-by: prettysunflower --- wp-plugin-base.php => $REPO_NAME.php | 6 +++--- .gitea/template | 3 +++ .idea/wp-plugin-base.iml | 2 +- README.md | 3 +-- composer.json | 4 +++- 5 files changed, 11 insertions(+), 7 deletions(-) rename wp-plugin-base.php => $REPO_NAME.php (86%) create mode 100644 .gitea/template diff --git a/wp-plugin-base.php b/$REPO_NAME.php similarity index 86% rename from wp-plugin-base.php rename to $REPO_NAME.php index 1a24733..d8973fd 100644 --- a/wp-plugin-base.php +++ b/$REPO_NAME.php @@ -1,8 +1,8 @@ - + diff --git a/README.md b/README.md index 25bfdfd..902fbd2 100644 --- a/README.md +++ b/README.md @@ -1,2 +1 @@ -# wp-plugin-base - +# $REPO_NAME \ No newline at end of file diff --git a/composer.json b/composer.json index 4e753dc..fd00a96 100644 --- a/composer.json +++ b/composer.json @@ -1,5 +1,7 @@ { "autoload": { - "psr-4": {"wp_plugin_base\\": "."} + "psr-4": { + "${REPO_NAME_PASCAL}\\": "." + } } }