15 lines
323 B
PHP
15 lines
323 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
ini_set('max_execution_time', 300);
|
||
|
|
|
||
|
|
// array to pass back data
|
||
|
|
$data = array();
|
||
|
|
|
||
|
|
// run command on terminal
|
||
|
|
$command = 'cd ../.. && php artisan migrate --force';
|
||
|
|
$last_line = exec($command, $data['migrate'], $data['results']);
|
||
|
|
|
||
|
|
// return a response
|
||
|
|
//return all our data to an AJAX call
|
||
|
|
echo json_encode($data);
|