| Package Data | |
|---|---|
| Maintainer Username: | kevinsimard |
| Maintainer Contact: | kev.simard@gmail.com (Kevin Simard) |
| Package Create Date: | 2015-04-28 |
| Package Last Update: | 2017-03-23 |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2025-10-30 03:00:40 |
| Package Statistics | |
|---|---|
| Total Downloads: | 13 |
| Monthly Downloads: | 0 |
| Daily Downloads: | 0 |
| Total Stars: | 1 |
| Total Watchers: | 1 |
| Total Forks: | 1 |
| Total Open Issues: | 0 |
Add Kevinsimard\Deploy\Command\Task\DeployTask to the list of commands in app/Console/Kernel.php.
<?php namespace App\Console;
use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
class Kernel extends ConsoleKernel {
/**
* @var array
*/
protected $commands = [
...
"Kevinsimard\Deploy\Command\Task\DeployTask",
];
...
Add/edit the config/remote.php file.
<?php
return [
// default connection name
"default" => "local",
// connections
"connections" => [
"local" => [
"host" => "127.0.0.1",
"username" => "username",
"password" => "password",
"key" => "",
"keytext" => "",
"keyphrase" => "",
"agent" => "",
],
],
// connection groups
"groups" => [
"web" => ["local"]
],
];
php artisan deploy:app <ROOT>
The following options are available:
├── src
│ └── Kevinsimard
│ └── Deploy
│ └── Command
│ └── Task
│ └── DeployTask.php
├── .editorconfig
├── .gitattributes
├── .gitignore
├── LICENSE.md
├── README.md
└── composer.json
This package is open-sourced software licensed under the MIT license.