Skip to content

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

Notifications You must be signed in to change notification settings

RobinRadic/laravel-bukkit-console

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Laravel Bukkit Console

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

About

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

Resources

Stars

Watchers

Forks

Packages

No packages published