We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be5baea commit 116096cCopy full SHA for 116096c
composer.json
@@ -10,7 +10,7 @@
10
],
11
"require": {
12
"illuminate/support": "5.1.*",
13
- "illuminate/database": "5.1.*"
+ "illuminate/database": "5.1.*|5.2.*"
14
},
15
"require-dev": {
16
"phpunit/phpunit": "~4.0"
src/PolycastServiceProvider.php
@@ -29,6 +29,10 @@ public function boot(Factory $factory){
29
__DIR__.'/../dist/js/polycast.min.js' => public_path('vendor/polycast/polycast.min.js'),
30
], 'public');
31
32
+ $this->publishes([
33
+ __DIR__.'/../database/migrations/' => database_path('migrations')
34
+ ], 'migrations');
35
+
36
//establish connection and send current time
37
$this->app['router']->post('polycast/connect', function(){
38
return ['status' => 'success', 'time' => Carbon::now()->toDateTimeString()];
0 commit comments