eubby / forum
Installs: 17
Dependents: 0
Suggesters: 0
Security: 0
Stars: 10
Watchers: 1
Forks: 3
Open Issues: 1
pkg:composer/eubby/forum
Requires
- php: >=5.3.0
- illuminate/support: 4.0.x
- mockery/mockery: dev-master
- orchestra/testbench: 2.0.*
- phpunit/phpunit: 3.7.*
This package is not auto-updated.
Last update: 2025-10-07 06:17:45 UTC
README
- This forum package is inspired by esotalk developed by @tobscure.
Status: Under Development
How to Install
- In your app composer.json file, add:
"require": { "eubby/forum": "dev-Core" }
- Configure your database settings in the L4 app/config/database.php file
- Open your terminal in the L4 App root directory and run
php composer.phar update
command - Add Forum Service Provider to the app/config/app.php file under the array key "providers" as shown below
'providers' => array( 'Eubby\Forum\ForumServiceProvider', )
- Please change the default user model in app/config/auth.php to:
'model' => 'Eubby\Models\User',
- And run the following command in the terminal to start installing the Forum package
- Please note that this command will ask you to create an admin user account before installing the package
php artisan forum:install
Frontend
- By default it is available on http://www.domain.com/forum
Admin Panel
- By default it is available on http://www.domain.com/admin
Documentation will be updated soon