Skip to content

Commit c351dad

Browse files
committed
Starting
1 parent f7e6bd7 commit c351dad

File tree

7 files changed

+880
-5
lines changed

7 files changed

+880
-5
lines changed

.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
APP_NAME=Laravel
1+
APP_NAME="WordPress REPL"
22
APP_ENV=local
33
APP_KEY=
44
APP_DEBUG=true

.github/workflows/deploy.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,8 @@ jobs:
5757
run: |
5858
ssh ${{ env.SERVER_USER }}@${{ env.SERVER_IP }} "cd ${{ env.DEPLOY_DIR }} && \
5959
export PATH=/usr/local/bin:\$PATH && \
60-
php8.3 artisan migrate --force
60+
php8.3 artisan migrate --force && \
61+
php8.3 artisan optimize
6162
6263
- name: Notify Slack on Success
6364
if: success()

.phpstorm.meta.php

Lines changed: 191 additions & 2 deletions
Large diffs are not rendered by default.

_ide_helper.php

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22407,6 +22407,49 @@ public static function flushMacros()
2240722407
}
2240822408
}
2240922409

22410+
namespace Spatie\SignalAwareCommand\Facades {
22411+
/**
22412+
*
22413+
*
22414+
* @see \Spatie\SignalAwareCommand\Signal
22415+
*/
22416+
class Signal {
22417+
/**
22418+
*
22419+
*
22420+
* @static
22421+
*/
22422+
public static function handle($signal, $callable)
22423+
{
22424+
/** @var \Spatie\SignalAwareCommand\Signal $instance */
22425+
return $instance->handle($signal, $callable);
22426+
}
22427+
22428+
/**
22429+
*
22430+
*
22431+
* @static
22432+
*/
22433+
public static function executeSignalHandlers($signal, $command)
22434+
{
22435+
/** @var \Spatie\SignalAwareCommand\Signal $instance */
22436+
return $instance->executeSignalHandlers($signal, $command);
22437+
}
22438+
22439+
/**
22440+
*
22441+
*
22442+
* @static
22443+
*/
22444+
public static function clearHandlers($signal = null)
22445+
{
22446+
/** @var \Spatie\SignalAwareCommand\Signal $instance */
22447+
return $instance->clearHandlers($signal);
22448+
}
22449+
22450+
}
22451+
}
22452+
2241022453
namespace Illuminate\Http {
2241122454
/**
2241222455
*
@@ -27239,6 +27282,7 @@ class Uri extends \Illuminate\Support\Uri {}
2723927282
class Validator extends \Illuminate\Support\Facades\Validator {}
2724027283
class View extends \Illuminate\Support\Facades\View {}
2724127284
class Vite extends \Illuminate\Support\Facades\Vite {}
27285+
class Signal extends \Spatie\SignalAwareCommand\Facades\Signal {}
2724227286
}
2724327287

2724427288

composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
"inertiajs/inertia-laravel": "^2.0",
1414
"laravel/framework": "^12.0",
1515
"laravel/tinker": "^2.10.1",
16+
"spatie/laravel-backup": "^9.2",
1617
"spatie/laravel-honeypot": "^4.5",
1718
"tightenco/ziggy": "^2.4"
1819
},

0 commit comments

Comments
 (0)