Skip to content

Commit

Permalink
Laravel 11.18.1 Shift (#1628)
Browse files Browse the repository at this point in the history
* Bump Laravel version constraint

* composer update

* updated composer dependencies

---------

Co-authored-by: Shift <[email protected]>
  • Loading branch information
alexjustesen and laravel-shift authored Jul 27, 2024
1 parent 6923d65 commit b02366d
Show file tree
Hide file tree
Showing 4 changed files with 276 additions and 203 deletions.
69 changes: 67 additions & 2 deletions _ide_helper.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

/**
* A helper file for Laravel, to provide autocomplete information to your IDE
* Generated for Laravel 11.16.0.
* Generated for Laravel 11.18.1.
*
* This file should not be included in your code, only analyzed by your IDE!
*
Expand Down Expand Up @@ -3557,6 +3557,16 @@
{
/** @var \Illuminate\Support\Testing\Fakes\BusFake $instance */
return $instance->serializeAndRestore($serializeAndRestore);
}
/**
* Get the batches that have been dispatched.
*
* @return array
* @static
*/ public static function dispatchedBatches()
{
/** @var \Illuminate\Support\Testing\Fakes\BusFake $instance */
return $instance->dispatchedBatches();
}
}
/**
Expand Down Expand Up @@ -18035,7 +18045,7 @@
* @param string $asset
* @param string|null $buildDirectory
* @return string
* @throws \Exception
* @throws \Illuminate\Foundation\ViteException
* @static
*/ public static function content($asset, $buildDirectory = null)
{
Expand Down Expand Up @@ -24287,6 +24297,61 @@ class Eloquent extends \Illuminate\Database\Eloquent\Model {
{
/** @var \Illuminate\Database\Query\Builder $instance */
return $instance->orWhereRaw($sql, $bindings);
}
/**
* Add a "where like" clause to the query.
*
* @param string $column
* @param string $value
* @param bool $caseSensitive
* @param string $boolean
* @param bool $not
* @return \Illuminate\Database\Query\Builder
* @static
*/ public static function whereLike($column, $value, $caseSensitive = false, $boolean = 'and', $not = false)
{
/** @var \Illuminate\Database\Query\Builder $instance */
return $instance->whereLike($column, $value, $caseSensitive, $boolean, $not);
}
/**
* Add an "or where like" clause to the query.
*
* @param string $column
* @param string $value
* @param bool $caseSensitive
* @return \Illuminate\Database\Query\Builder
* @static
*/ public static function orWhereLike($column, $value, $caseSensitive = false)
{
/** @var \Illuminate\Database\Query\Builder $instance */
return $instance->orWhereLike($column, $value, $caseSensitive);
}
/**
* Add a "where not like" clause to the query.
*
* @param string $column
* @param string $value
* @param bool $caseSensitive
* @param string $boolean
* @return \Illuminate\Database\Query\Builder
* @static
*/ public static function whereNotLike($column, $value, $caseSensitive = false, $boolean = 'and')
{
/** @var \Illuminate\Database\Query\Builder $instance */
return $instance->whereNotLike($column, $value, $caseSensitive, $boolean);
}
/**
* Add an "or where not like" clause to the query.
*
* @param string $columns
* @param string $value
* @param bool $caseSensitive
* @return \Illuminate\Database\Query\Builder
* @static
*/ public static function orWhereNotLike($column, $value, $caseSensitive = false)
{
/** @var \Illuminate\Database\Query\Builder $instance */
return $instance->orWhereNotLike($column, $value, $caseSensitive);
}
/**
* Add a "where in" clause to the query.
Expand Down
14 changes: 7 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@
"awcodes/filament-versions": "^2.0.1",
"chrisullyott/php-filesize": "^4.2.1",
"dragonmantank/cron-expression": "^3.3.3",
"filament/filament": "^3.2.95",
"filament/spatie-laravel-settings-plugin": "^3.2.95",
"filament/filament": "^3.2.96",
"filament/spatie-laravel-settings-plugin": "^3.2.96",
"geerlingguy/ping": "^1.2.1",
"guzzlehttp/guzzle": "^7.9.0",
"guzzlehttp/guzzle": "^7.9.2",
"influxdata/influxdb-client-php": "^3.6",
"laravel-notification-channels/telegram": "^5.0",
"laravel/framework": "^11.16",
"laravel/framework": "^11.18.1",
"laravel/prompts": "^0.1.24",
"laravel/sanctum": "^4.0.2",
"laravel/tinker": "^2.9.0",
Expand All @@ -32,12 +32,12 @@
"require-dev": {
"barryvdh/laravel-ide-helper": "^3.1",
"fakerphp/faker": "^1.23.1",
"laravel/pint": "^1.16.2",
"laravel/sail": "^1.30.2",
"laravel/pint": "^1.17.0",
"laravel/sail": "^1.31.0",
"laravel/telescope": "^5.1.1",
"mockery/mockery": "^1.6.12",
"nunomaduro/collision": "^8.3.0",
"phpunit/phpunit": "^11.2.7",
"phpunit/phpunit": "^11.2.8",
"spatie/laravel-ignition": "^2.8.0",
"tightenco/duster": "^3.0.1"
},
Expand Down
Loading

0 comments on commit b02366d

Please sign in to comment.