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
16 changes: 15 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.17.0.
* Generated for Laravel 10.18.0.
*
* This file should not be included in your code, only analyzed by your IDE!
*
Expand Down Expand Up @@ -18249,6 +18249,20 @@ public static function asset($asset, $buildDirectory = null)
{
/** @var \Illuminate\Foundation\Vite $instance */
return $instance->asset($asset, $buildDirectory);
}
/**
* Get the content of a given asset.
*
* @param string $asset
* @param string|null $buildDirectory
* @return string
* @throws \Exception
* @static
*/
public static function content($asset, $buildDirectory = null)
{
/** @var \Illuminate\Foundation\Vite $instance */
return $instance->content($asset, $buildDirectory);
}
/**
* Get a unique hash representing the current manifest, or null if there is no manifest.
Expand Down
16 changes: 8 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@
"chrisullyott/php-filesize": "^4.2.1",
"doctrine/dbal": "^3.6.5",
"dragonmantank/cron-expression": "^3.3.2",
"filament/filament": "^2.17.51",
"filament/spatie-laravel-settings-plugin": "^2.17.51",
"filament/filament": "^2.17.52",
"filament/spatie-laravel-settings-plugin": "^2.17.52",
"guzzlehttp/guzzle": "^7.7",
"influxdata/influxdb-client-php": "^2.9",
"laravel-notification-channels/telegram": "^4.0",
"laravel/framework": "^10.17",
"laravel/framework": "^10.18",
"laravel/sanctum": "^3.2.5",
"laravel/tinker": "^2.8.1",
"maatwebsite/excel": "^3.1.48",
Expand All @@ -28,11 +28,11 @@
"require-dev": {
"barryvdh/laravel-ide-helper": "^2.13",
"fakerphp/faker": "^1.23.0",
"laravel/pint": "^1.10.5",
"laravel/sail": "^1.23.1",
"mockery/mockery": "^1.6.4",
"nunomaduro/collision": "^7.7",
"phpunit/phpunit": "^10.2.6",
"laravel/pint": "^1.10.6",
"laravel/sail": "^1.23.2",
"mockery/mockery": "^1.6.6",
"nunomaduro/collision": "^7.8.1",
"phpunit/phpunit": "^10.3.1",
"spatie/laravel-ignition": "^2.2"
},
"autoload": {
Expand Down
Loading