@@ -45,7 +45,7 @@ class Application extends Container implements ApplicationContract, CachesConfig
4545 *
4646 * @var string
4747 */
48- const VERSION = '13.12 .0 ' ;
48+ const VERSION = '13.22 .0 ' ;
4949
5050 /**
5151 * The base path for the Laravel installation.
@@ -208,6 +208,13 @@ class Application extends Container implements ApplicationContract, CachesConfig
208208 */
209209 protected $ absoluteCachePathPrefixes = ['/ ' , '\\' ];
210210
211+ /**
212+ * The application builder class.
213+ *
214+ * @var class-string<Configuration\ApplicationBuilder>
215+ */
216+ protected static string $ applicationBuilder = Configuration \ApplicationBuilder::class;
217+
211218 /**
212219 * Create a new Illuminate application instance.
213220 *
@@ -238,7 +245,7 @@ public static function configure(?string $basePath = null)
238245 default => static ::inferBasePath (),
239246 };
240247
241- return (new Configuration \ ApplicationBuilder (new static ($ basePath )))
248+ return (new static:: $ applicationBuilder (new static ($ basePath )))
242249 ->withKernels ()
243250 ->withEvents ()
244251 ->withCommands ()
@@ -1658,6 +1665,7 @@ public function registerCoreContainerAliases()
16581665 'filesystem.cloud ' => [\Illuminate \Contracts \Filesystem \Cloud::class],
16591666 'hash ' => [\Illuminate \Hashing \HashManager::class],
16601667 'hash.driver ' => [\Illuminate \Contracts \Hashing \Hasher::class],
1668+ 'image ' => [\Illuminate \Image \ImageManager::class],
16611669 'log ' => [\Illuminate \Log \LogManager::class, \Psr \Log \LoggerInterface::class],
16621670 'mail.manager ' => [\Illuminate \Mail \MailManager::class, \Illuminate \Contracts \Mail \Factory::class],
16631671 'mailer ' => [\Illuminate \Mail \Mailer::class, \Illuminate \Contracts \Mail \Mailer::class, \Illuminate \Contracts \Mail \MailQueue::class],
0 commit comments