webrium / core
PHP Framework
3.0.6
2026-05-11 15:34 UTC
Requires
- php: ^8
Requires (Dev)
- phpunit/phpunit: ^9.6
- dev-master
- 3.0.6
- 3.0.5
- 3.0.4
- 3.0.3
- 3.0.1
- 3.0.0
- 2.1.7
- 2.1.6
- 2.1.5
- 2.1.4
- 2.1.3
- 2.1.2
- 2.1.1
- 2.1.0
- 2.0.9
- 2.0.8
- 2.0.7
- 2.0.6
- 2.0.5
- 2.0.4
- 2.0.3
- 2.0.2
- 2.0.1
- 2.0.0-beta-2
- 2.0.0-beta
- 1.0.11
- 1.0.10
- 1.0.9
- 1.0.8
- 1.0.7
- 1.0.6
- 1.0.5
- 1.0.4
- 1.0.3
- 1.0.2
- 1.0.1
- 0.2.9
- 0.2.8
- 0.2.7
- 0.2.5
- 0.2.4
- 0.2.3
- 0.2.2
- 0.2.1
- 0.2.0
- 0.1.7
- 0.1.6
- 0.1.5
- 0.1.4
- 0.1.1
- 0.0.56
- 0.0.55
- 0.0.51
- 0.0.50
- 0.0.49
- 0.0.48
- 0.0.47
- 0.0.46
- 0.0.45
- 0.0.44
- 0.0.43
- 0.0.42
- 0.0.41
- 0.0.40
- 0.0.39
- 0.0.38
- 0.0.36
- 0.0.35
- 0.0.34
- 0.0.32
- 0.0.28
- 0.0.26
- 0.0.24
- 0.0.22
- 0.0.20
- 0.0.18
- 0.0.17
- 0.0.16
- 0.0.14
- 0.0.12
- 0.0.11
- 0.0.10
- 0.0.8
- 0.0.7
- 0.0.5
- 0.0.4
- 0.0.3
- 0.0.2
- 0.0.1
- dev-add-route-source-path-param
- dev-feature/cors-middleware
- dev-dev-core3
- dev-improve-form-validation
- dev-beta
- dev-new_cache_development
This package is auto-updated.
Last update: 2026-05-12 19:41:52 UTC
README
Webrium Core
The Lightweight Engine for Modern PHP Applications
Fast. Modular. Elegant.
🌟 Overview
Webrium Core is a high-performance PHP component library designed to simplify web development. While it serves as the backbone of the Webrium Framework, it is built to be completely standalone. Whether you're building a microservice or a full-scale web app, Webrium Core provides the essential tools without the bloat.
📚 Comprehensive Documentation (Wiki)
Explore the full power of Webrium Core through our detailed guides:
🚀 Core Essentials
- App Initialization: Learn about the application structure and boot process.
- Routing System: Define and manage clean, RESTful routes easily.
- Helper Functions: Global shortcuts for URLs, redirects, input, paths, and more.
🌐 Request & Response
- URL Helpers: Manage and generate dynamic URLs effortlessly.
- Header Management: Control HTTP headers and responses.
- HTTP Client: Perform outgoing requests with a simple, fluent interface.
🛡️ Security & Validation
- Data Validator: Robust tools for validating user input and forms.
- JWT Integration: Secure your APIs with JSON Web Tokens.
- Hash Utilities: Secure password hashing, HMAC, tokens, and more.
🛠️ Files, Storage & Utilities
- File Manager: Read, write, stream, download, and manage files and directories.
- Session Manager: Store and retrieve session data, flash messages, and counters.
- File Upload: A streamlined way to handle file uploads safely.
🚀 Quick Start
1. Installation
Get started via Composer:
composer require webrium/core
2. Basic Setup (index.php)
<?php require_once __DIR__ . '/vendor/autoload.php'; use Webrium\App; use Webrium\Debug; use Webrium\Route; Debug::enableErrorDisplay(true); Debug::initialize(); App::initialize(__DIR__); Route::get('/', function() { return "Welcome to Webrium Core! 🚀"; }); App::run();