radic/bukkit-console

Laravel package providing remote access to a Bukkit server console using JS/PHP/Laravel and the SwiftAPI Bukkit plugin

v1.0.1 2014-07-08 03:47 UTC

This package is not auto-updated.

Last update: 2024-03-25 23:04:43 UTC


README

Build Status Latest Stable Version License

Laravel package providing remote access to a Bukkit server console using JS/PHP/Laravel and the SwiftAPI Bukkit plugin.

Preview screenshots

Screen 1 Screen 2 Screen 3

Version 1.0.1

View changelog and todo

Requirements
Installation

Add to composer.json requirements:

"requires": {
    "radic/bukkit-swift-api": "dev-master",
    "radic/bukkit-console": "dev-master",
}

Register Laravel service providers:

'providers' => array(
    'Radic\BukkitSwiftApi\BukkitSwiftApiServiceProvider',
    'Radic\BukkitConsole\BukkitConsoleServiceProvider',
)

Publish all zeh stuff:

php artisan config:publish radic/bukkit-console
php artisan asset:publish radic/bukkit-console
php artisan view:publish radic/bukkit-console
Using

The standard route is (http://yoursite/bukkit-console')

Configuration

There's hardly any config, accept for the JS terminal. Will write something here later on

Routing
// config.php
array(
    'view' => array('bukkit-console', 'Radic\BukkitConsole\Controllers\ConsoleController@index'),
    'cmd' => array('bukkit-console', 'Radic\BukkitConsole\Controllers\ConsoleController@cmd')
)
// BukkitConsoleServiceProvider.php
$routes = Config::get('radic/bukkit-console::routes');
Route::get($routes['view'][0], $routes['view'][1]);
Route::post($routes['cmd'][0], $routes['cmd'][1]);
Further reading

Credits

License

Laravel Bukkit Console licensed Do What the Fuck You Want to Public License