PHPackages                             dappcore/php-developer - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. dappcore/php-developer

ActiveLibrary

dappcore/php-developer
======================

Developer tools module for Core PHP Framework - route inspector, database explorer, logs viewer

v0.1.0(today)017↑2900%EUPL-1.2PHPPHP ^8.2CI failing

Since Mar 15Pushed todayCompare

[ Source](https://github.com/dAppCore/php-developer)[ Packagist](https://packagist.org/packages/dappcore/php-developer)[ RSS](/packages/dappcore-php-developer/feed)WikiDiscussions main Synced today

READMEChangelogDependencies (6)Versions (7)Used By (0)

Core PHP Framework Project
==========================

[](#core-php-framework-project)

A modular monolith Laravel application built with Core PHP Framework.

Features
--------

[](#features)

- **Core Framework** - Event-driven module system with lazy loading
- **Admin Panel** - Livewire-powered admin interface with Flux UI
- **REST API** - Scoped API keys, rate limiting, webhooks, OpenAPI docs
- **MCP Tools** - Model Context Protocol for AI agent integration

Requirements
------------

[](#requirements)

- PHP 8.2+
- Composer 2.x
- SQLite (default) or MySQL/PostgreSQL
- Node.js 18+ (for frontend assets)

Installation
------------

[](#installation)

```
# Clone or create from template
git clone https://github.com/host-uk/core-template.git my-project
cd my-project

# Install dependencies
composer install
npm install

# Configure environment
cp .env.example .env
php artisan key:generate

# Set up database
touch database/database.sqlite
php artisan migrate

# Start development server
php artisan serve
```

Visit:

Project Structure
-----------------

[](#project-structure)

```
app/
├── Console/      # Artisan commands
├── Http/         # Controllers & Middleware
├── Models/       # Eloquent models
├── Mod/          # Your custom modules
└── Providers/    # Service providers

config/
└── core.php      # Core framework configuration

routes/
├── web.php       # Public web routes
├── api.php       # REST API routes
└── console.php   # Artisan commands

```

Creating Modules
----------------

[](#creating-modules)

```
# Create a new module with all features
php artisan make:mod Blog --all

# Create module with specific features
php artisan make:mod Shop --web --api --admin
```

Modules follow the event-driven pattern:

```
