eubby / forum
There is no license information available for the latest version (dev-Core) of this package.
dev-Core
2013-11-13 07:35 UTC
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-03-11 03:44:38 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