8 lines
195 B
PHP
8 lines
195 B
PHP
<?php
|
|
require_once 'vendor/autoload.php';
|
|
$app = require_once 'bootstrap/app.php';
|
|
$kernel = $app->make(Illuminate\Contracts\Console\Kernel::class);
|
|
$kernel->bootstrap();
|
|
|
|
print_r(languages());
|