From bcfe35fa91c055f20166f71f489fe6aecc7943f0 Mon Sep 17 00:00:00 2001 From: Cooper Dalrymple Date: Thu, 4 Jun 2026 13:05:07 -0500 Subject: [PATCH] Rename --- Makefile | 22 ++++++++++++++++++++++ composer.json | 13 ++++++++----- inc/class-settings.php | 6 +++--- plugin.php => ogre-captcha.php | 18 +++++++++--------- package-lock.json | 4 ++-- package.json | 11 +++++++---- readme.txt | 8 ++++---- 7 files changed, 55 insertions(+), 27 deletions(-) rename plugin.php => ogre-captcha.php (78%) diff --git a/Makefile b/Makefile index e69de29..9fc3f54 100644 --- a/Makefile +++ b/Makefile @@ -0,0 +1,22 @@ +all: install + +reinstall: clean install + +clean: clean-composer clean-npm + +clean-composer: + rm -rf vendor/* || true + rm -rf lib/* || true + rm composer.lock || true + composer clearcache + +clean-npm: + rm -rf node_modules/* || true + rm package-lock.json || true + +install: + composer install + npm install + +package: install + gulp package diff --git a/composer.json b/composer.json index eabb455..f40a3b3 100644 --- a/composer.json +++ b/composer.json @@ -1,14 +1,17 @@ { "$schema": "https://getcomposer.org/schema.json", - "name": "cleverogre/plugin", + "name": "cleverogre/ogre-captcha", "version": "0.0.0", - "title": "Example", - "description": "Example plugin", + "title": "Ogre CAPTCHA", + "description": "Protect your site with CAPTCHA", "author": "CleverOgre", "license": "GPL-3.0+", "keywords": [ "WordPress", - "Plugin" + "Plugin", + "Cap", + "CAPTCHA", + "Security" ], "homepage": "https://cleverogre.com", "repositories": { @@ -45,7 +48,7 @@ }, "autoload": { "files": [ - "plugin.php" + "ogre-captcha.php" ] } } diff --git a/inc/class-settings.php b/inc/class-settings.php index c118993..ecfc40e 100644 --- a/inc/class-settings.php +++ b/inc/class-settings.php @@ -1,6 +1,6 @@