From 9d9fe4cc80f2ad3850906e02dc607e0c3da5bf33 Mon Sep 17 00:00:00 2001 From: mwpn Date: Sat, 11 Oct 2025 07:13:47 +0700 Subject: [PATCH] fix: Update all NovaCore references to Woles Framework - Update README.md title and all references - Update composer.json package name and description - Update env.example configuration - Update Exception Handler class comment - Ensure consistent branding throughout the project --- README.md | 6 +++--- composer.json | 8 ++++---- env.example | 4 ++-- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 1052fd1..7c0fb2c 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# 🚀 NovaCore Framework v1.0 +# 🚀 Woles Framework v1.0 A minimalist, ultra-secure, high-performance PHP framework based on CleanLite HMVC architecture. @@ -199,7 +199,7 @@ $model->create(['name' => 'John', 'email' => 'john@example.com']); ### Environment Variables ```env -APP_NAME="NovaCore Framework" +APP_NAME="Woles Framework" APP_ENV=development APP_DEBUG=true APP_URL=http://localhost:8000 @@ -290,4 +290,4 @@ This project is licensed under the MIT License - see the LICENSE file for detail --- -**NovaCore Framework v1.0** - Built with ❤️ for modern PHP development +**Woles Framework v1.0** - Built with ❤️ for modern PHP development diff --git a/composer.json b/composer.json index cfd60d8..3f98d0e 100644 --- a/composer.json +++ b/composer.json @@ -1,12 +1,12 @@ { - "name": "novacore/framework", - "description": "NovaCore Framework v1.0 - A minimalist, ultra-secure, high-performance PHP framework", + "name": "woles/framework", + "description": "Woles Framework v1.0 - A minimalist, ultra-secure, high-performance PHP framework", "type": "project", "license": "MIT", "authors": [ { - "name": "NovaCore Team", - "email": "team@novacore.dev" + "name": "Woles Team", + "email": "team@woles.dev" } ], "require": { diff --git a/env.example b/env.example index b3a890b..e59bfa7 100644 --- a/env.example +++ b/env.example @@ -1,5 +1,5 @@ -# NovaCore Framework Configuration -APP_NAME="NovaCore Framework" +# Woles Framework Configuration +APP_NAME="Woles Framework" APP_ENV=development APP_DEBUG=true APP_URL=http://localhost:8000