{"id":15175116,"url":"https://github.com/robinradic/laravel-bukkit-console","last_synced_at":"2026-02-02T13:35:46.042Z","repository":{"id":18409516,"uuid":"21591259","full_name":"RobinRadic/laravel-bukkit-console","owner":"RobinRadic","description":"Laravel package providing remote access to a Bukkit server console using JS/PHP/Laravel and the SwiftAPI Bukkit plugin","archived":false,"fork":false,"pushed_at":"2014-07-16T09:52:15.000Z","size":1168,"stargazers_count":0,"open_issues_count":0,"forks_count":2,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-01-01T11:09:59.491Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/RobinRadic.png","metadata":{"files":{"readme":"readme.md","changelog":"changelog.md","contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-07-08T00:02:20.000Z","updated_at":"2014-07-08T00:47:28.000Z","dependencies_parsed_at":"2022-07-26T22:32:00.149Z","dependency_job_id":null,"html_url":"https://github.com/RobinRadic/laravel-bukkit-console","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RobinRadic%2Flaravel-bukkit-console","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RobinRadic%2Flaravel-bukkit-console/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RobinRadic%2Flaravel-bukkit-console/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RobinRadic%2Flaravel-bukkit-console/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/RobinRadic","download_url":"https://codeload.github.com/RobinRadic/laravel-bukkit-console/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239985690,"owners_count":19729512,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-09-27T12:03:03.000Z","updated_at":"2026-02-02T13:35:45.992Z","avatar_url":"https://github.com/RobinRadic.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Laravel Bukkit Console\n[![Build Status](https://travis-ci.org/RobinRadic/bukkit-console.svg?branch=master)](https://travis-ci.org/RobinRadic/bukkit-console)\n[![Latest Stable Version](https://poser.pugx.org/radic/bukkit-console/v/stable.svg)](https://packagist.org/packages/radic/bukkit-console)\n[![License](https://poser.pugx.org/radic/bukkit-console/license.svg)](https://packagist.org/packages/radic/bukkit-console)\n\nLaravel package providing remote access to a Bukkit server console using JS/PHP/Laravel and the SwiftAPI Bukkit plugin.\n\n\n##### Preview screenshots\n[![Screen 1](http://i.imgur.com/uEkDzmgs.jpg)](https://github.com/RobinRadic/laravel-bukkit-console/raw/master/ss1.jpg)\n[![Screen 2](http://i.imgur.com/D4nUPY3s.jpg)](https://github.com/RobinRadic/laravel-bukkit-console/raw/master/ss2.jpg)\n[![Screen 3](http://i.imgur.com/SMLPHf5s.jpg)](https://github.com/RobinRadic/laravel-bukkit-console/raw/master/ss3.jpg)\n\n\n### Version 1.0.1\n[View changelog and todo](https://github.com/RobinRadic/laravel-bukkit-console/blob/master/changelog.md)\n\n##### Requirements\n- PHP \u003e 5.3 \n- Laravel \u003e 4.0\n- [Laravel Bukkit SwiftApi](https://github.com/RobinRadic/laravel-bukkit-swiftapi)\n\n\n##### Installation\nAdd to composer.json requirements:\n```JSON\n\"requires\": {\n    \"radic/bukkit-swift-api\": \"dev-master\",\n    \"radic/bukkit-console\": \"dev-master\",\n}\n```\n\nRegister Laravel service providers:\n```php\n'providers' =\u003e array(\n    'Radic\\BukkitSwiftApi\\BukkitSwiftApiServiceProvider',\n    'Radic\\BukkitConsole\\BukkitConsoleServiceProvider',\n)\n```\n\nPublish all zeh stuff:\n```Batchfile\nphp artisan config:publish radic/bukkit-console\nphp artisan asset:publish radic/bukkit-console\nphp artisan view:publish radic/bukkit-console\n```\n\n##### Using\nThe standard route is (http://yoursite/bukkit-console')\n\n##### Configuration\nThere's hardly any config, accept for the JS terminal. Will write something here later on\n\n###### Routing\n```php\n// config.php\narray(\n    'view' =\u003e array('bukkit-console', 'Radic\\BukkitConsole\\Controllers\\ConsoleController@index'),\n    'cmd' =\u003e array('bukkit-console', 'Radic\\BukkitConsole\\Controllers\\ConsoleController@cmd')\n)\n// BukkitConsoleServiceProvider.php\n$routes = Config::get('radic/bukkit-console::routes');\nRoute::get($routes['view'][0], $routes['view'][1]);\nRoute::post($routes['cmd'][0], $routes['cmd'][1]);\n```\n\n\n##### Further reading\n- [Laravel Bukkit SwiftApi](https://github.com/RobinRadic/laravel-bukkit-swiftapi). The SwiftAPI laravel wrapper\n- [Bukkit SwiftAPI](http://dev.bukkit.org/bukkit-plugins/swiftapi). The SwiftAPI Website.\n- [SwiftAPI Thrift Documentation](http://willwarren.com/docs/swiftapi/latest/). The docs for SwiftAPI generated Thrift code.\n- [Bukkit SwiftAPI Reposiotry](https://bitbucket.org/phybros/swiftapi). Repository for the SwiftApi Bukkit Java plugin.\n\n### Credits\n- [Robin Radic](https://github.com/RobinRadic) created [Laravel Bukkit SwiftApi](https://github.com/RobinRadic/laravel-bukkit-swiftapi)\n- [Phybros](http://dev.bukkit.org/profiles/phybros) created [Bukkit SwiftAPI](http://dev.bukkit.org/bukkit-plugins/swiftapi)\n- [Jakub Jankiewicz](http://jcubic.pl) created [jQuery Terminal](http://terminal.jcubic.pl)\n\n### License\nLaravel Bukkit Console licensed [Do What the Fuck You Want to Public License](http://www.wtfpl.net/)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frobinradic%2Flaravel-bukkit-console","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frobinradic%2Flaravel-bukkit-console","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frobinradic%2Flaravel-bukkit-console/lists"}