-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from kg-bot/local
Local
- Loading branch information
Showing
42 changed files
with
2,155 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
/vendor | ||
/node_modules | ||
composer.phar | ||
composer.lock | ||
package-lock.json | ||
.DS_Store | ||
.idea |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
{ | ||
"private": true, | ||
"devDependencies": { | ||
"axios": "^0.17", | ||
"bootstrap": "^4.0.0", | ||
"cross-env": "^5.1", | ||
"css-loader": "^0.28.10", | ||
"jquery": "^3.2", | ||
"laravel-localization-loader": "^1.0.5", | ||
"laravel-mix": "^2.0", | ||
"lodash": "^4.17.4", | ||
"popper.js": "^1.12", | ||
"style-loader": "^0.20.2", | ||
"vue": "^2.5.7" | ||
}, | ||
"dependencies": { | ||
"ajv": "^6.5.0", | ||
"bootstrap-vue": "^2.0.0-rc.1", | ||
"change-case": "^3.0.2", | ||
"datejs": "^1.0.0-rc3", | ||
"fs": "0.0.1-security", | ||
"glob": "^7.1.2", | ||
"lang.js": "^1.1.12", | ||
"path": "^0.12.7", | ||
"require-dir": "^1.0.0", | ||
"require.all": "^2.0.4", | ||
"vee-validate": "^2.0.5", | ||
"vue-awesome": "^3.0.2", | ||
"vue-multiselect": "^2.1.0", | ||
"vue-resource": "^1.5.0", | ||
"vue-router": "^3.0.1", | ||
"vue-spinner": "^1.0.3", | ||
"vue-toasted": "^1.1.24", | ||
"vue2-dropzone": "^3.1.0", | ||
"vuejs-datepicker": "^0.9.29" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
<?php | ||
/** | ||
* Created by PhpStorm. | ||
* User: kgbot | ||
* Date: 6/4/18 | ||
* Time: 1:18 AM | ||
*/ | ||
|
||
namespace KgBot\LaravelDeploy\Events; | ||
|
||
|
||
use Illuminate\Broadcasting\InteractsWithSockets; | ||
use Illuminate\Broadcasting\PrivateChannel; | ||
use Illuminate\Foundation\Events\Dispatchable; | ||
use Illuminate\Queue\SerializesModels; | ||
use KgBot\LaravelDeploy\Models\Client; | ||
|
||
class LaravelDeployFailed | ||
{ | ||
use Dispatchable, InteractsWithSockets, SerializesModels; | ||
|
||
public $client; | ||
public $message; | ||
|
||
/** | ||
* Create a new event instance. | ||
* | ||
* @return void | ||
*/ | ||
public function __construct( Client $client, string $message ) | ||
{ | ||
$this->client = $client; | ||
$this->message = $message; | ||
} | ||
|
||
/** | ||
* Get the channels the event should broadcast on. | ||
* | ||
* @return \Illuminate\Broadcasting\Channel|array | ||
*/ | ||
public function broadcastOn() | ||
{ | ||
return new PrivateChannel( config( 'laravel-deploy.events.channel', 'channel-name' ) ); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.