Skip to content

Commit

Permalink
updated composer dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
alexjustesen committed Nov 22, 2023
1 parent 45f9ff2 commit c327492
Show file tree
Hide file tree
Showing 6 changed files with 88 additions and 41 deletions.
49 changes: 48 additions & 1 deletion _ide_helper.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

/**
* A helper file for Laravel, to provide autocomplete information to your IDE
* Generated for Laravel 10.31.0.
* Generated for Laravel 10.33.0.
*
* This file should not be included in your code, only analyzed by your IDE!
*
Expand Down Expand Up @@ -3518,6 +3518,18 @@ public static function assertDispatchedWithoutChain($command, $callback = null)
{
/** @var \Illuminate\Support\Testing\Fakes\BusFake $instance */
$instance->assertDispatchedWithoutChain($command, $callback);
}
/**
* Create a new assertion about a chained batch.
*
* @param \Closure $callback
* @return \Illuminate\Support\Testing\Fakes\ChainedBatchTruthTest
* @static
*/
public static function chainedBatch($callback)
{
/** @var \Illuminate\Support\Testing\Fakes\BusFake $instance */
return $instance->chainedBatch($callback);
}
/**
* Assert if a batch was dispatched based on a truth-test callback.
Expand Down Expand Up @@ -4345,6 +4357,18 @@ public static function restoreLock($name, $owner)
{
/** @var \Illuminate\Cache\DatabaseStore $instance */
return $instance->restoreLock($name, $owner);
}
/**
* Remove an item from the cache if it is expired.
*
* @param string $key
* @return bool
* @static
*/
public static function forgetIfExpired($key)
{
/** @var \Illuminate\Cache\DatabaseStore $instance */
return $instance->forgetIfExpired($key);
}
/**
* Remove all items from the cache.
Expand Down Expand Up @@ -8154,6 +8178,17 @@ public static function getDispatcher()
{
/** @var \Illuminate\Http\Client\Factory $instance */
return $instance->getDispatcher();
}
/**
* Get the array of global middleware.
*
* @return array
* @static
*/
public static function getGlobalMiddleware()
{
/** @var \Illuminate\Http\Client\Factory $instance */
return $instance->getGlobalMiddleware();
}
/**
* Register a custom macro.
Expand Down Expand Up @@ -8307,6 +8342,18 @@ public static function load($namespace, $group, $locale)
{
/** @var \Illuminate\Translation\Translator $instance */
$instance->load($namespace, $group, $locale);
}
/**
* Register a callback that is responsible for handling missing translation keys.
*
* @param callable|null $callback
* @return static
* @static
*/
public static function handleMissingKeysUsing($callback)
{
/** @var \Illuminate\Translation\Translator $instance */
return $instance->handleMissingKeysUsing($callback);
}
/**
* Add a new namespace to the loader.
Expand Down
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,28 +11,28 @@
"php": "^8.1",
"awcodes/filament-versions": "^2.0.1",
"chrisullyott/php-filesize": "^4.2.1",
"doctrine/dbal": "^3.7.1",
"doctrine/dbal": "^3.7.2",
"dragonmantank/cron-expression": "^3.3.3",
"filament/filament": "^3.0.94",
"filament/spatie-laravel-settings-plugin": "^3.0.94",
"filament/filament": "^3.0.101",
"filament/spatie-laravel-settings-plugin": "^3.0.101",
"guzzlehttp/guzzle": "^7.8",
"influxdata/influxdb-client-php": "^3.4",
"laravel-notification-channels/telegram": "^4.0",
"laravel/framework": "^10.33",
"laravel/prompts": "^0.1.13",
"laravel/sanctum": "^3.3.2",
"laravel/tinker": "^2.8.2",
"livewire/livewire": "^3.1.0",
"livewire/livewire": "^3.2.1",
"maatwebsite/excel": "^3.1.50",
"maennchen/zipstream-php": "^2.4",
"spatie/laravel-settings": "^2.8.3",
"squirephp/timezones-en": "^3.4.2"
"squirephp/timezones-en": "^3.4.4"
},
"require-dev": {
"barryvdh/laravel-ide-helper": "^2.13",
"fakerphp/faker": "^1.23.0",
"laravel/pint": "^1.13.6",
"laravel/sail": "^1.26.0",
"laravel/sail": "^1.26.1",
"laravel/telescope": "^4.17.2",
"mockery/mockery": "^1.6.6",
"nunomaduro/collision": "^7.10.0",
Expand Down
62 changes: 31 additions & 31 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion public/css/filament/filament/app.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/js/filament/forms/components/file-upload.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/js/filament/forms/components/markdown-editor.js

Large diffs are not rendered by default.

0 comments on commit c327492

Please sign in to comment.