From dd9f4c794fbeecb21b8201e718f30f7838b01407 Mon Sep 17 00:00:00 2001 From: Admin Date: Tue, 11 Aug 2026 06:20:04 +0000 Subject: [PATCH] Add core Laravel files and Docker config --- artisan | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 artisan diff --git a/artisan b/artisan new file mode 100644 index 0000000..0856472 --- /dev/null +++ b/artisan @@ -0,0 +1,19 @@ +#!/usr/bin/env php +make(Illuminate\Contracts\Console\Kernel::class); + +$status = $kernel->handle( + $input = new Symfony\Component\Console\Input\ArgvInput, + new Symfony\Component\Console\Output\ConsoleOutput +); + +$kernel->terminate($input, $status); + +exit($status); \ No newline at end of file