Skip to content

Commit 34a7764

Browse files
Laravel 10.18.0 Shift (alexjustesen#675)
Co-authored-by: Shift <[email protected]>
1 parent 094408f commit 34a7764

File tree

3 files changed

+132
-121
lines changed

3 files changed

+132
-121
lines changed

_ide_helper.php

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
/**
66
* A helper file for Laravel, to provide autocomplete information to your IDE
7-
* Generated for Laravel 10.17.0.
7+
* Generated for Laravel 10.18.0.
88
*
99
* This file should not be included in your code, only analyzed by your IDE!
1010
*
@@ -18249,6 +18249,20 @@ public static function asset($asset, $buildDirectory = null)
1824918249
{
1825018250
/** @var \Illuminate\Foundation\Vite $instance */
1825118251
return $instance->asset($asset, $buildDirectory);
18252+
}
18253+
/**
18254+
* Get the content of a given asset.
18255+
*
18256+
* @param string $asset
18257+
* @param string|null $buildDirectory
18258+
* @return string
18259+
* @throws \Exception
18260+
* @static
18261+
*/
18262+
public static function content($asset, $buildDirectory = null)
18263+
{
18264+
/** @var \Illuminate\Foundation\Vite $instance */
18265+
return $instance->content($asset, $buildDirectory);
1825218266
}
1825318267
/**
1825418268
* Get a unique hash representing the current manifest, or null if there is no manifest.

composer.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@
1313
"chrisullyott/php-filesize": "^4.2.1",
1414
"doctrine/dbal": "^3.6.5",
1515
"dragonmantank/cron-expression": "^3.3.2",
16-
"filament/filament": "^2.17.51",
17-
"filament/spatie-laravel-settings-plugin": "^2.17.51",
16+
"filament/filament": "^2.17.52",
17+
"filament/spatie-laravel-settings-plugin": "^2.17.52",
1818
"guzzlehttp/guzzle": "^7.7",
1919
"influxdata/influxdb-client-php": "^2.9",
2020
"laravel-notification-channels/telegram": "^4.0",
21-
"laravel/framework": "^10.17",
21+
"laravel/framework": "^10.18",
2222
"laravel/sanctum": "^3.2.5",
2323
"laravel/tinker": "^2.8.1",
2424
"maatwebsite/excel": "^3.1.48",
@@ -28,11 +28,11 @@
2828
"require-dev": {
2929
"barryvdh/laravel-ide-helper": "^2.13",
3030
"fakerphp/faker": "^1.23.0",
31-
"laravel/pint": "^1.10.5",
32-
"laravel/sail": "^1.23.1",
33-
"mockery/mockery": "^1.6.4",
34-
"nunomaduro/collision": "^7.7",
35-
"phpunit/phpunit": "^10.2.6",
31+
"laravel/pint": "^1.10.6",
32+
"laravel/sail": "^1.23.2",
33+
"mockery/mockery": "^1.6.6",
34+
"nunomaduro/collision": "^7.8.1",
35+
"phpunit/phpunit": "^10.3.1",
3636
"spatie/laravel-ignition": "^2.2"
3737
},
3838
"autoload": {

0 commit comments

Comments
 (0)