{"id":18412185,"url":"https://github.com/midnite81/laracommander","last_synced_at":"2026-05-18T09:02:07.717Z","repository":{"id":62528403,"uuid":"117225826","full_name":"midnite81/laracommander","owner":"midnite81","description":"A web dashboard for Artisan Commands","archived":false,"fork":false,"pushed_at":"2018-12-05T10:13:20.000Z","size":635,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-10-11T10:03:17.547Z","etag":null,"topics":["artisan","artisan-command","laravel","laravel-5-package"],"latest_commit_sha":null,"homepage":"https://midnite.uk/github/laracommander","language":"PHP","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/midnite81.png","metadata":{"files":{"readme":"readme.md","changelog":null,"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":"2018-01-12T10:08:12.000Z","updated_at":"2022-07-16T15:29:23.000Z","dependencies_parsed_at":"2022-11-02T14:30:54.742Z","dependency_job_id":null,"html_url":"https://github.com/midnite81/laracommander","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/midnite81/laracommander","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/midnite81%2Flaracommander","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/midnite81%2Flaracommander/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/midnite81%2Flaracommander/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/midnite81%2Flaracommander/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/midnite81","download_url":"https://codeload.github.com/midnite81/laracommander/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/midnite81%2Flaracommander/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33172173,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-18T05:43:36.989Z","status":"ssl_error","status_checked_at":"2026-05-18T05:43:19.133Z","response_time":71,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["artisan","artisan-command","laravel","laravel-5-package"],"created_at":"2024-11-06T03:40:10.490Z","updated_at":"2026-05-18T09:02:07.690Z","avatar_url":"https://github.com/midnite81.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# LaraCommander - Artisan Web Dashboard\n[![Latest Stable Version](https://poser.pugx.org/midnite81/laracommander/version)](https://packagist.org/packages/midnite81/laracommander) [![Total Downloads](https://poser.pugx.org/midnite81/laracommander/downloads)](https://packagist.org/packages/midnite81/laracommander) [![Latest Unstable Version](https://poser.pugx.org/midnite81/laracommander/v/unstable)](https://packagist.org/packages/midnite81/laracommander) [![License](https://poser.pugx.org/midnite81/laracommander/license.svg)](https://packagist.org/packages/midnite81/laracommander)\n\n_A web dashboard for Artisan Commands_\n\nOnce you've installed LaraCommander, you may wish to view the guide to [How the Dashboard works](dashboard.md)\n\n# Installation\n\nThis package requires PHP 5.6+, and includes a Laravel 5 Service Provider.\n\nTo install through composer include the package in your `composer.json`.\n\n```json\n{\n    \"require\": {\n        \"midnite81/laracommander\": \"1.*\"\n    }\n}\n```\n\n\nRun `composer install` or `composer update` to download the dependencies or you can run `composer require midnite81/laracommander`.\n\n## Laravel 5 Integration\n\nIf you're using Laravel 5.5, you can ignore the first part of this as Laravel will auto discover this package, but you \nwill need to publish the config file.\n\nTo use the package with Laravel 5 firstly add the LaraCommander service provider to the list of service providers \nin `app/config/app.php`.\n\n```php\n'providers' =\u003e [\n    ...\n    Midnite81\\LaraCommander\\CommandServiceProvider::class,\n    Collective\\Html\\HtmlServiceProvider::class,\n    ...       \n];\n```\n\nAdd in the facades to the aliases section of `app/config/app.php`.\n\n```php\n'aliases' =\u003e [\n    ...\n    'Form' =\u003e Collective\\Html\\FormFacade::class,\n    'Html' =\u003e Collective\\Html\\HtmlFacade::class,\n    ...       \n];\n```\n    \n ### Publish the config       \n    \nPublish the config files using \n`php artisan vendor:publish --provider=\"Midnite81\\LaraCommander\\CommandServiceProvider\"`\n\nIf you're using Laravel 5.5 or above you can simply type `php artisan vendor:publish` and select \n`Provider: Midnite81\\LaraCommander\\CommandServiceProvider`\n    \n# Configuration File\n\nOnce you have published the config files, you will find a `laracommander.php` file in the `config` folder. It is \nimportant that you look through these settings and update these where necessary. By default LaraCommander isn't \nset to use any auth middleware, which can be set in the config depending on your needs. \n\n# Setup complete\n\nIf you've followed the steps above you should now be able to load the LaraCommander Dashboard by going to \nhttp://example.com/console (or whatever url you're specified in the config).","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmidnite81%2Flaracommander","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmidnite81%2Flaracommander","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmidnite81%2Flaracommander/lists"}