openclassify / openclassify
The skeleton application for the Laravel framework.
Package info
github.com/openclassify/openclassify
Type:project
pkg:composer/openclassify/openclassify
3.1.1
2026-05-30 11:09 UTC
Requires
- php: ^8.2
- a909m/filament-statefusion: ^2.3
- ariaieboy/filament-currency: ^3.0
- bezhansalleh/filament-language-switch: ^4.1
- cheesegrits/filament-google-maps: ^5.0
- dutchcodingcompany/filament-developer-logins: ^2.1
- dutchcodingcompany/filament-socialite: ^3.1
- filament/filament: ^5.0
- filament/spatie-laravel-media-library-plugin: ^5.3
- filament/spatie-laravel-settings-plugin: ^5.3
- jeffgreco13/filament-breezy: ^3.2
- laravel/ai: ^0.2.5
- laravel/framework: ^12.0
- laravel/reverb: ^1.8
- laravel/sanctum: ^4.3
- laravel/tinker: ^2.10.1
- mwguerra/filemanager: ^2.0
- nwidart/laravel-modules: ^11.0
- pxlrbt/filament-activity-log: ^2.1
- socialiteproviders/apple: ^5.9
- spatie/laravel-permission: ^6.24
- spatie/laravel-settings: ^3.7
- stechstudio/filament-impersonate: ^5.1
- tapp/filament-country-code-field: ^2.0
- ysfkaya/filament-phone-input: ^4.1
Requires (Dev)
- fakerphp/faker: ^1.23
- laravel/boost: ^2.2
- laravel/pail: ^1.2.2
- laravel/pint: ^1.24
- laravel/sail: ^1.41
- mockery/mockery: ^1.6
- nunomaduro/collision: ^8.6
- phpunit/phpunit: ^11.5.3
This package is auto-updated.
Last update: 2026-06-01 11:24:54 UTC
README
OpenClassify is a modular classifieds marketplace built with Laravel 12 and Filament v5.
Core Stack
- Laravel 12
- FilamentPHP v5
nwidart/laravel-modules- Blade + Tailwind + Vite
- Spatie Permission
- Laravel Reverb + Echo (realtime chat)
Modules
All business features live in Modules/* (routes, services, models, resources, views, seeders).
Create a new module:
php artisan module:make ModuleName
Enable it in modules_statuses.json.
Quick Start
Docker
cp .env.example .env docker compose up -d
App URLs:
- Frontend:
http://localhost:8000 - Admin:
http://localhost:8000/admin - Panel:
http://localhost:8000/panel
Local
Requirements: PHP 8.2+, Composer, Node 18+, database server.
composer install npm install cp .env.example .env php artisan key:generate php artisan migrate php artisan db:seed composer run dev
Seeded Accounts
| Role | Password | |
|---|---|---|
| Admin | a@a.com |
236330 |
| Member | b@b.com |
36330 |
Demo Mode
Demo mode provisions a temporary, per-visitor marketplace schema.
Requirements:
DB_CONNECTION=pgsqlDEMO=1
Minimal .env:
DEMO=1 DEMO_TTL_MINUTES=360 DEMO_SCHEMA_PREFIX=demo_ DEMO_COOKIE_NAME=oc2_demo DEMO_LOGIN_EMAIL=a@a.com DEMO_PUBLIC_SCHEMA=public
Commands:
php artisan demo:prepare php artisan demo:cleanup
Notes:
- First guest homepage shows only
Prepare Demo. Prepare Democreates/reuses a private schema and logs in seeded admin.- Expired demos are cleaned up automatically (hourly schedule).
Realtime Chat (Reverb)
Set .env:
BROADCAST_CONNECTION=reverb REVERB_APP_ID=app_id REVERB_APP_KEY=app_key REVERB_APP_SECRET=app_secret REVERB_HOST=localhost REVERB_PORT=8080 REVERB_SCHEME=http REVERB_SERVER_HOST=0.0.0.0 REVERB_SERVER_PORT=8080 VITE_REVERB_APP_KEY="${REVERB_APP_KEY}" VITE_REVERB_HOST="${REVERB_HOST}" VITE_REVERB_PORT="${REVERB_PORT}" VITE_REVERB_SCHEME="${REVERB_SCHEME}"
Start:
composer run dev
Channel strategy:
- private channel:
users.{id}.inbox - events:
InboxMessageCreated,ConversationReadUpdated
Test and Build
php artisan test
php artisan optimize:clear
php artisan view:cache
Production Checklist
php artisan migrate --force php artisan db:seed --force php artisan storage:link php artisan config:cache php artisan route:cache php artisan view:cache
Contributors
- Website: openclassify.com
- Package: openclassify/openclassify
- Contributors: GitHub graph