Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bow
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ if (!file_exists(__DIR__."/vendor/autoload.php")) {
require __DIR__."/vendor/autoload.php";

// Make kernel instance
$kernel = Kernel::configure(__DIR__.'/config');
$kernel = Kernel::configure(__DIR__)->withConfigPath(__DIR__ . '/config');

// Create command instance and set filename
$setting = new Setting(__DIR__);
Expand Down
19 changes: 15 additions & 4 deletions config/notifier.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,20 @@
'webhook_url' => app_env('SLACK_WEBHOOK_URL'),
],

'twilio' => [
'account_sid' => app_env('TWILIO_ACCOUNT_SID'),
'auth_token' => app_env('TWILIO_AUTH_TOKEN'),
'from' => app_env('TWILIO_FROM'),
'sms' => [
'provider' => app_env('SMS_PROVIDER', 'twilio'), // Default SMS provider

'twilio' => [
'account_sid' => app_env('TWILIO_ACCOUNT_SID'),
'auth_token' => app_env('TWILIO_AUTH_TOKEN'),
'from' => app_env('TWILIO_FROM'),
],

'callisto' => [
'access_key' => app_env('CALLISTO_ACCESS_KEY'),
'access_secret' => app_env('CALLISTO_ACCESS_SECRET'),
'notify_url' => app_env('CALLISTO_NOTIFY_URL'),
'sender' => app_env('CALLISTO_SENDER'),
],
],
];
2 changes: 1 addition & 1 deletion public/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

// Bind kernel to application
$app->bind(
Kernel::configure(base_path('config'))
Kernel::configure(dirname(__DIR__))->withConfigPath(dirname(__DIR__) . '/config')
);

// Run The Application
Expand Down
2 changes: 1 addition & 1 deletion seeders/20251220174703-user-seeder.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public function run()
$faker = FakerFactory::create();

foreach (range(1, 5) as $value) {
$user =[
$user = [
'name' => $faker->name,
'description' => $faker->text(100),
'email' => $faker->email,
Expand Down
Loading