https://github.com/robinradic/laravel-bukkit-console
Laravel package providing remote access to a Bukkit server console using JS/PHP/Laravel and the SwiftAPI Bukkit plugin
https://github.com/robinradic/laravel-bukkit-console
Last synced: 5 months ago
JSON representation
Laravel package providing remote access to a Bukkit server console using JS/PHP/Laravel and the SwiftAPI Bukkit plugin
- Host: GitHub
- URL: https://github.com/robinradic/laravel-bukkit-console
- Owner: RobinRadic
- Created: 2014-07-08T00:02:20.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2014-07-16T09:52:15.000Z (almost 12 years ago)
- Last Synced: 2025-01-01T11:09:59.491Z (over 1 year ago)
- Language: JavaScript
- Size: 1.11 MB
- Stars: 0
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- Changelog: changelog.md
Awesome Lists containing this project
README
## Laravel Bukkit Console
[](https://travis-ci.org/RobinRadic/bukkit-console)
[](https://packagist.org/packages/radic/bukkit-console)
[](https://packagist.org/packages/radic/bukkit-console)
Laravel package providing remote access to a Bukkit server console using JS/PHP/Laravel and the SwiftAPI Bukkit plugin.
##### Preview screenshots
[](https://github.com/RobinRadic/laravel-bukkit-console/raw/master/ss1.jpg)
[](https://github.com/RobinRadic/laravel-bukkit-console/raw/master/ss2.jpg)
[](https://github.com/RobinRadic/laravel-bukkit-console/raw/master/ss3.jpg)
### Version 1.0.1
[View changelog and todo](https://github.com/RobinRadic/laravel-bukkit-console/blob/master/changelog.md)
##### Requirements
- PHP > 5.3
- Laravel > 4.0
- [Laravel Bukkit SwiftApi](https://github.com/RobinRadic/laravel-bukkit-swiftapi)
##### Installation
Add to composer.json requirements:
```JSON
"requires": {
"radic/bukkit-swift-api": "dev-master",
"radic/bukkit-console": "dev-master",
}
```
Register Laravel service providers:
```php
'providers' => array(
'Radic\BukkitSwiftApi\BukkitSwiftApiServiceProvider',
'Radic\BukkitConsole\BukkitConsoleServiceProvider',
)
```
Publish all zeh stuff:
```Batchfile
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
```php
// 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
- [Laravel Bukkit SwiftApi](https://github.com/RobinRadic/laravel-bukkit-swiftapi). The SwiftAPI laravel wrapper
- [Bukkit SwiftAPI](http://dev.bukkit.org/bukkit-plugins/swiftapi). The SwiftAPI Website.
- [SwiftAPI Thrift Documentation](http://willwarren.com/docs/swiftapi/latest/). The docs for SwiftAPI generated Thrift code.
- [Bukkit SwiftAPI Reposiotry](https://bitbucket.org/phybros/swiftapi). Repository for the SwiftApi Bukkit Java plugin.
### Credits
- [Robin Radic](https://github.com/RobinRadic) created [Laravel Bukkit SwiftApi](https://github.com/RobinRadic/laravel-bukkit-swiftapi)
- [Phybros](http://dev.bukkit.org/profiles/phybros) created [Bukkit SwiftAPI](http://dev.bukkit.org/bukkit-plugins/swiftapi)
- [Jakub Jankiewicz](http://jcubic.pl) created [jQuery Terminal](http://terminal.jcubic.pl)
### License
Laravel Bukkit Console licensed [Do What the Fuck You Want to Public License](http://www.wtfpl.net/)