├── .editorconfig ├── .gitignore ├── LICENSE.md ├── README.md ├── bin └── acorn ├── composer.json ├── config-stubs └── app.php ├── config ├── app.php ├── assets.php ├── auth.php ├── broadcasting.php ├── cache.php ├── concurrency.php ├── cors.php ├── database.php ├── filesystems.php ├── hashing.php ├── logging.php ├── mail.php ├── queue.php ├── services.php ├── session.php └── view.php ├── phpunit.xml.dist ├── pint.json ├── src ├── Illuminate │ └── Foundation │ │ ├── AliasLoader.php │ │ ├── Application.php │ │ ├── Auth │ │ ├── Access │ │ │ ├── Authorizable.php │ │ │ └── AuthorizesRequests.php │ │ ├── EmailVerificationRequest.php │ │ └── User.php │ │ ├── Bootstrap │ │ ├── BootProviders.php │ │ ├── HandleExceptions.php │ │ ├── LoadConfiguration.php │ │ ├── LoadEnvironmentVariables.php │ │ ├── RegisterFacades.php │ │ ├── RegisterProviders.php │ │ └── SetRequestForConsole.php │ │ ├── Bus │ │ ├── Dispatchable.php │ │ ├── DispatchesJobs.php │ │ ├── PendingChain.php │ │ ├── PendingClosureDispatch.php │ │ └── PendingDispatch.php │ │ ├── CacheBasedMaintenanceMode.php │ │ ├── Cloud.php │ │ ├── ComposerScripts.php │ │ ├── Concerns │ │ └── ResolvesDumpSource.php │ │ ├── Configuration │ │ ├── ApplicationBuilder.php │ │ ├── Exceptions.php │ │ └── Middleware.php │ │ ├── Console │ │ ├── AboutCommand.php │ │ ├── ApiInstallCommand.php │ │ ├── BroadcastingInstallCommand.php │ │ ├── CastMakeCommand.php │ │ ├── ChannelListCommand.php │ │ ├── ChannelMakeCommand.php │ │ ├── ClassMakeCommand.php │ │ ├── ClearCompiledCommand.php │ │ ├── CliDumper.php │ │ ├── ClosureCommand.php │ │ ├── ComponentMakeCommand.php │ │ ├── ConfigCacheCommand.php │ │ ├── ConfigClearCommand.php │ │ ├── ConfigPublishCommand.php │ │ ├── ConfigShowCommand.php │ │ ├── ConsoleMakeCommand.php │ │ ├── DocsCommand.php │ │ ├── DownCommand.php │ │ ├── EnumMakeCommand.php │ │ ├── EnvironmentCommand.php │ │ ├── EnvironmentDecryptCommand.php │ │ ├── EnvironmentEncryptCommand.php │ │ ├── EventCacheCommand.php │ │ ├── EventClearCommand.php │ │ ├── EventGenerateCommand.php │ │ ├── EventListCommand.php │ │ ├── EventMakeCommand.php │ │ ├── ExceptionMakeCommand.php │ │ ├── InteractsWithComposerPackages.php │ │ ├── InterfaceMakeCommand.php │ │ ├── JobMakeCommand.php │ │ ├── JobMiddlewareMakeCommand.php │ │ ├── Kernel.php │ │ ├── KeyGenerateCommand.php │ │ ├── LangPublishCommand.php │ │ ├── ListenerMakeCommand.php │ │ ├── MailMakeCommand.php │ │ ├── ModelMakeCommand.php │ │ ├── NotificationMakeCommand.php │ │ ├── ObserverMakeCommand.php │ │ ├── OptimizeClearCommand.php │ │ ├── OptimizeCommand.php │ │ ├── PackageDiscoverCommand.php │ │ ├── PolicyMakeCommand.php │ │ ├── ProviderMakeCommand.php │ │ ├── QueuedCommand.php │ │ ├── RequestMakeCommand.php │ │ ├── ResourceMakeCommand.php │ │ ├── RouteCacheCommand.php │ │ ├── RouteClearCommand.php │ │ ├── RouteListCommand.php │ │ ├── RuleMakeCommand.php │ │ ├── ScopeMakeCommand.php │ │ ├── ServeCommand.php │ │ ├── StorageLinkCommand.php │ │ ├── StorageUnlinkCommand.php │ │ ├── StubPublishCommand.php │ │ ├── TestMakeCommand.php │ │ ├── TraitMakeCommand.php │ │ ├── UpCommand.php │ │ ├── VendorPublishCommand.php │ │ ├── ViewCacheCommand.php │ │ ├── ViewClearCommand.php │ │ ├── ViewMakeCommand.php │ │ └── stubs │ │ │ ├── api-routes.stub │ │ │ ├── broadcasting-routes.stub │ │ │ ├── cast.inbound.stub │ │ │ ├── cast.stub │ │ │ ├── channel.stub │ │ │ ├── class.invokable.stub │ │ │ ├── class.stub │ │ │ ├── console.stub │ │ │ ├── echo-bootstrap-js.stub │ │ │ ├── echo-js-ably.stub │ │ │ ├── echo-js-pusher.stub │ │ │ ├── echo-js-reverb.stub │ │ │ ├── enum.backed.stub │ │ │ ├── enum.stub │ │ │ ├── event.stub │ │ │ ├── exception-render-report.stub │ │ │ ├── exception-render.stub │ │ │ ├── exception-report.stub │ │ │ ├── exception.stub │ │ │ ├── interface.stub │ │ │ ├── job.middleware.stub │ │ │ ├── job.queued.stub │ │ │ ├── job.stub │ │ │ ├── listener.queued.stub │ │ │ ├── listener.stub │ │ │ ├── listener.typed.queued.stub │ │ │ ├── listener.typed.stub │ │ │ ├── mail.stub │ │ │ ├── maintenance-mode.stub │ │ │ ├── markdown-mail.stub │ │ │ ├── markdown-notification.stub │ │ │ ├── markdown.stub │ │ │ ├── model.morph-pivot.stub │ │ │ ├── model.pivot.stub │ │ │ ├── model.stub │ │ │ ├── notification.stub │ │ │ ├── observer.plain.stub │ │ │ ├── observer.stub │ │ │ ├── pest.stub │ │ │ ├── pest.unit.stub │ │ │ ├── policy.plain.stub │ │ │ ├── policy.stub │ │ │ ├── provider.stub │ │ │ ├── request.stub │ │ │ ├── resource-collection.stub │ │ │ ├── resource.stub │ │ │ ├── routes.stub │ │ │ ├── rule.implicit.stub │ │ │ ├── rule.stub │ │ │ ├── scope.stub │ │ │ ├── test.stub │ │ │ ├── test.unit.stub │ │ │ ├── trait.stub │ │ │ ├── view-component.stub │ │ │ ├── view-mail.stub │ │ │ ├── view.pest.stub │ │ │ ├── view.stub │ │ │ └── view.test.stub │ │ ├── EnvironmentDetector.php │ │ ├── Events │ │ ├── DiagnosingHealth.php │ │ ├── DiscoverEvents.php │ │ ├── Dispatchable.php │ │ ├── LocaleUpdated.php │ │ ├── MaintenanceModeDisabled.php │ │ ├── MaintenanceModeEnabled.php │ │ ├── PublishingStubs.php │ │ ├── Terminating.php │ │ └── VendorTagPublished.php │ │ ├── Exceptions │ │ ├── Handler.php │ │ ├── RegisterErrorViewPaths.php │ │ ├── Renderer │ │ │ ├── Exception.php │ │ │ ├── Frame.php │ │ │ ├── Listener.php │ │ │ ├── Mappers │ │ │ │ └── BladeMapper.php │ │ │ └── Renderer.php │ │ ├── ReportableHandler.php │ │ ├── Whoops │ │ │ ├── WhoopsExceptionRenderer.php │ │ │ └── WhoopsHandler.php │ │ └── views │ │ │ ├── 401.blade.php │ │ │ ├── 402.blade.php │ │ │ ├── 403.blade.php │ │ │ ├── 404.blade.php │ │ │ ├── 419.blade.php │ │ │ ├── 429.blade.php │ │ │ ├── 500.blade.php │ │ │ ├── 503.blade.php │ │ │ ├── layout.blade.php │ │ │ └── minimal.blade.php │ │ ├── FileBasedMaintenanceMode.php │ │ ├── Http │ │ ├── Events │ │ │ └── RequestHandled.php │ │ ├── FormRequest.php │ │ ├── HtmlDumper.php │ │ ├── Kernel.php │ │ ├── MaintenanceModeBypassCookie.php │ │ └── Middleware │ │ │ ├── CheckForMaintenanceMode.php │ │ │ ├── Concerns │ │ │ └── ExcludesPaths.php │ │ │ ├── ConvertEmptyStringsToNull.php │ │ │ ├── HandlePrecognitiveRequests.php │ │ │ ├── InvokeDeferredCallbacks.php │ │ │ ├── PreventRequestsDuringMaintenance.php │ │ │ ├── TransformsRequest.php │ │ │ ├── TrimStrings.php │ │ │ ├── ValidateCsrfToken.php │ │ │ ├── ValidatePostSize.php │ │ │ └── VerifyCsrfToken.php │ │ ├── Inspiring.php │ │ ├── MaintenanceModeManager.php │ │ ├── Mix.php │ │ ├── MixFileNotFoundException.php │ │ ├── MixManifestNotFoundException.php │ │ ├── PackageManifest.php │ │ ├── Precognition.php │ │ ├── ProviderRepository.php │ │ ├── Providers │ │ ├── ArtisanServiceProvider.php │ │ ├── ComposerServiceProvider.php │ │ ├── ConsoleSupportServiceProvider.php │ │ ├── FormRequestServiceProvider.php │ │ └── FoundationServiceProvider.php │ │ ├── Queue │ │ ├── InteractsWithUniqueJobs.php │ │ └── Queueable.php │ │ ├── Routing │ │ ├── PrecognitionCallableDispatcher.php │ │ └── PrecognitionControllerDispatcher.php │ │ ├── Support │ │ └── Providers │ │ │ ├── AuthServiceProvider.php │ │ │ ├── EventServiceProvider.php │ │ │ └── RouteServiceProvider.php │ │ ├── Testing │ │ ├── Concerns │ │ │ ├── InteractsWithAuthentication.php │ │ │ ├── InteractsWithConsole.php │ │ │ ├── InteractsWithContainer.php │ │ │ ├── InteractsWithDatabase.php │ │ │ ├── InteractsWithDeprecationHandling.php │ │ │ ├── InteractsWithExceptionHandling.php │ │ │ ├── InteractsWithRedis.php │ │ │ ├── InteractsWithSession.php │ │ │ ├── InteractsWithTestCaseLifecycle.php │ │ │ ├── InteractsWithTime.php │ │ │ ├── InteractsWithViews.php │ │ │ ├── MakesHttpRequests.php │ │ │ └── WithoutExceptionHandlingHandler.php │ │ ├── DatabaseMigrations.php │ │ ├── DatabaseTransactions.php │ │ ├── DatabaseTransactionsManager.php │ │ ├── DatabaseTruncation.php │ │ ├── LazilyRefreshDatabase.php │ │ ├── RefreshDatabase.php │ │ ├── RefreshDatabaseState.php │ │ ├── TestCase.php │ │ ├── Traits │ │ │ └── CanConfigureMigrationCommands.php │ │ ├── WithConsoleEvents.php │ │ ├── WithFaker.php │ │ ├── WithoutMiddleware.php │ │ └── Wormhole.php │ │ ├── Validation │ │ └── ValidatesRequests.php │ │ ├── Vite.php │ │ ├── ViteException.php │ │ ├── ViteManifestNotFoundException.php │ │ ├── helpers.php │ │ ├── resources │ │ ├── exceptions │ │ │ └── renderer │ │ │ │ ├── components │ │ │ │ ├── card.blade.php │ │ │ │ ├── context.blade.php │ │ │ │ ├── editor.blade.php │ │ │ │ ├── header.blade.php │ │ │ │ ├── icons │ │ │ │ │ ├── chevron-down.blade.php │ │ │ │ │ ├── chevron-up.blade.php │ │ │ │ │ ├── computer-desktop.blade.php │ │ │ │ │ ├── moon.blade.php │ │ │ │ │ └── sun.blade.php │ │ │ │ ├── layout.blade.php │ │ │ │ ├── navigation.blade.php │ │ │ │ ├── theme-switcher.blade.php │ │ │ │ ├── trace-and-editor.blade.php │ │ │ │ └── trace.blade.php │ │ │ │ ├── dark-mode.css │ │ │ │ ├── dist │ │ │ │ ├── dark-mode.css │ │ │ │ ├── light-mode.css │ │ │ │ ├── scripts.js │ │ │ │ └── styles.css │ │ │ │ ├── light-mode.css │ │ │ │ ├── package-lock.json │ │ │ │ ├── package.json │ │ │ │ ├── postcss.config.js │ │ │ │ ├── scripts.js │ │ │ │ ├── show.blade.php │ │ │ │ ├── styles.css │ │ │ │ ├── tailwind.config.js │ │ │ │ └── vite.config.js │ │ ├── health-up.blade.php │ │ └── server.php │ │ └── stubs │ │ └── facade.stub ├── Roots │ ├── Acorn │ │ ├── Application.php │ │ ├── Application │ │ │ └── Concerns │ │ │ │ └── Bootable.php │ │ ├── Assets │ │ │ ├── Asset │ │ │ │ ├── Asset.php │ │ │ │ ├── JsonAsset.php │ │ │ │ ├── PhpAsset.php │ │ │ │ ├── SvgAsset.php │ │ │ │ └── TextAsset.php │ │ │ ├── AssetFactory.php │ │ │ ├── AssetsServiceProvider.php │ │ │ ├── Bundle.php │ │ │ ├── Concerns │ │ │ │ ├── Conditional.php │ │ │ │ └── Enqueuable.php │ │ │ ├── Contracts │ │ │ │ ├── Asset.php │ │ │ │ ├── Bundle.php │ │ │ │ ├── Manifest.php │ │ │ │ └── ManifestNotFoundException.php │ │ │ ├── Exceptions │ │ │ │ ├── BundleNotFoundException.php │ │ │ │ └── ManifestNotFoundException.php │ │ │ ├── Manager.php │ │ │ ├── Manifest.php │ │ │ ├── Middleware │ │ │ │ ├── LaravelMixMiddleware.php │ │ │ │ ├── RootsBudMiddleware.php │ │ │ │ └── ViteMiddleware.php │ │ │ ├── View │ │ │ │ └── BladeDirective.php │ │ │ └── Vite.php │ │ ├── Bootstrap │ │ │ ├── HandleExceptions.php │ │ │ ├── LoadConfiguration.php │ │ │ └── RegisterFacades.php │ │ ├── ComposerScripts.php │ │ ├── Configuration │ │ │ ├── ApplicationBuilder.php │ │ │ ├── Concerns │ │ │ │ └── Paths.php │ │ │ ├── Exceptions.php │ │ │ └── Middleware.php │ │ ├── Console │ │ │ ├── Commands │ │ │ │ ├── AboutCommand.php │ │ │ │ ├── AcornInitCommand.php │ │ │ │ ├── AcornInstallCommand.php │ │ │ │ ├── Command.php │ │ │ │ ├── ComposerMakeCommand.php │ │ │ │ ├── ConfigCacheCommand.php │ │ │ │ ├── GeneratorCommand.php │ │ │ │ ├── KeyGenerateCommand.php │ │ │ │ ├── OptimizeClearCommand.php │ │ │ │ ├── OptimizeCommand.php │ │ │ │ ├── RouteCacheCommand.php │ │ │ │ ├── SummaryCommand.php │ │ │ │ ├── VendorPublishCommand.php │ │ │ │ └── stubs │ │ │ │ │ ├── composer.stub │ │ │ │ │ └── paths │ │ │ │ │ └── storage │ │ │ │ │ ├── framework │ │ │ │ │ ├── cache │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ └── data │ │ │ │ │ │ │ └── .gitignore │ │ │ │ │ ├── sessions │ │ │ │ │ │ └── .gitignore │ │ │ │ │ └── views │ │ │ │ │ │ └── .gitignore │ │ │ │ │ └── logs │ │ │ │ │ └── .gitignore │ │ │ ├── Concerns │ │ │ │ ├── GetsFreshApplication.php │ │ │ │ └── GracefullyCallsCommands.php │ │ │ ├── Console.php │ │ │ └── Kernel.php │ │ ├── DefaultProviders.php │ │ ├── Exceptions │ │ │ ├── Handler.php │ │ │ ├── SkipProviderException.php │ │ │ └── Whoops │ │ │ │ ├── WhoopsExceptionRenderer.php │ │ │ │ └── WhoopsHandler.php │ │ ├── Filesystem │ │ │ ├── Filesystem.php │ │ │ └── FilesystemServiceProvider.php │ │ ├── Http │ │ │ └── Kernel.php │ │ ├── PackageManifest.php │ │ ├── Providers │ │ │ ├── AcornServiceProvider.php │ │ │ └── QueueServiceProvider.php │ │ ├── Sage │ │ │ ├── Concerns │ │ │ │ ├── FiltersBodyClass.php │ │ │ │ ├── FiltersEnqueues.php │ │ │ │ ├── FiltersTemplates.php │ │ │ │ ├── FiltersThePost.php │ │ │ │ └── FiltersViews.php │ │ │ ├── Sage.php │ │ │ ├── SageServiceProvider.php │ │ │ └── ViewFinder.php │ │ ├── ServiceProvider.php │ │ └── View │ │ │ ├── Component.php │ │ │ ├── Composer.php │ │ │ ├── Composers │ │ │ ├── Concerns │ │ │ │ ├── AcfFields.php │ │ │ │ ├── Arrayable.php │ │ │ │ ├── Cacheable.php │ │ │ │ └── Extractable.php │ │ │ └── Debugger.php │ │ │ ├── FileViewFinder.php │ │ │ └── ViewServiceProvider.php │ ├── globals.php │ └── helpers.php └── _ide-helpers.php └── tests ├── Application ├── ApplicationBuilderTest.php ├── ApplicationTest.php ├── DefaultProvidersTest.php └── __fixtures__ │ ├── base_path │ ├── base_app │ │ └── app │ │ │ └── .gitignore │ ├── base_composer │ │ └── composer.json │ └── base_empty │ │ └── .gitignore │ ├── get_namespace │ ├── a_bedrock_site │ │ ├── a_random_library │ │ │ └── composer.json │ │ ├── a_sage_theme │ │ │ └── app │ │ │ │ └── .gitignore │ │ └── composer.json │ └── a_sage_theme │ │ ├── app │ │ └── .gitignore │ │ └── composer.json │ ├── is_down_for_maintenance │ ├── storage │ │ └── framework │ │ │ └── down │ └── wp │ │ └── .maintenance │ └── use_paths │ ├── app │ └── .gitignore │ ├── bootstrap │ └── cache │ │ └── .gitignore │ ├── composer.json │ ├── config │ └── .gitignore │ ├── database │ └── .gitignore │ ├── public │ └── .gitignore │ ├── resources │ └── lang │ │ └── .gitignore │ └── storage │ └── .gitignore ├── Assets ├── AssetTest.php ├── AssetsHelpersTest.php ├── AssetsServiceProviderTest.php ├── BladeDirectiveTest.php ├── BudCompatibilityTest.php ├── BundleTest.php ├── LaravelMixMiddlewareTest.php ├── ManagerTest.php ├── ManifestTest.php ├── RootsBudMiddlewareTest.php └── __fixtures__ │ ├── asset_types │ └── public │ │ ├── assets │ │ ├── apray.cache-busted.ext │ │ ├── bdubs.cache-busted.svg │ │ ├── bnif.cache-busted.php │ │ └── kjo.cache-busted.json │ │ └── manifest.json │ ├── bud_multi_compiler │ └── public │ │ ├── app │ │ ├── entrypoints.json │ │ └── manifest.json │ │ └── editor │ │ ├── entrypoints.json │ │ └── manifest.json │ ├── bud_multi_runtime │ └── public │ │ ├── app.2.64da10a892a71df413b1.css │ │ ├── app.64da10a892a71df413b1.js │ │ ├── customizer.64da10a892a71df413b1.js │ │ ├── editor.4.64da10a892a71df413b1.css │ │ ├── editor.64da10a892a71df413b1.js │ │ ├── entrypoints.json │ │ ├── manifest.json │ │ ├── runtime~app.64da10a892a71df413b1.js │ │ ├── runtime~customizer.64da10a892a71df413b1.js │ │ ├── runtime~editor.64da10a892a71df413b1.js │ │ ├── vendor │ │ └── harmony-module.64da10a892a71df413b1.js │ │ └── wordpress.json │ ├── bud_single_runtime │ └── public │ │ ├── app.2.4476c5f869ee7584ba3c.css │ │ ├── app.4476c5f869ee7584ba3c.js │ │ ├── customizer.4476c5f869ee7584ba3c.js │ │ ├── editor.4.4476c5f869ee7584ba3c.css │ │ ├── editor.4476c5f869ee7584ba3c.js │ │ ├── entrypoints.json │ │ ├── manifest.json │ │ ├── runtime.4476c5f869ee7584ba3c.js │ │ ├── vendor │ │ └── harmony-module.4476c5f869ee7584ba3c.js │ │ └── wordpress.json │ ├── bud_single_runtime_dev │ └── public │ │ ├── app.js │ │ ├── bud.js │ │ ├── customizer.js │ │ ├── editor.js │ │ ├── entrypoints.json │ │ ├── manifest.json │ │ └── vendor-app~editor~customizer.js │ ├── bud_single_runtime_hmr │ └── public │ │ ├── entrypoints.json │ │ ├── hmr.json │ │ └── manifest.json │ ├── bud_v6_single_runtime │ └── public │ │ ├── css │ │ ├── app.5abc62.css │ │ └── editor.31d6cf.css │ │ ├── entrypoints.json │ │ ├── js │ │ ├── 575.baac18.js │ │ ├── app.ff5dd8.js │ │ ├── editor.6e8560.js │ │ └── runtime.8eb29a.js │ │ └── manifest.json │ ├── bud_v6_single_runtime_esm │ └── public │ │ ├── css │ │ ├── app.5abc62.css │ │ └── editor.31d6cf.css │ │ ├── entrypoints.json │ │ ├── js │ │ ├── 575.0d819a.mjs │ │ ├── app.e0da49.mjs │ │ ├── editor.9c37af.mjs │ │ └── runtime.bd5a57.mjs │ │ └── manifest.json │ ├── bud_v6_single_runtime_hmr │ └── public │ │ ├── entrypoints.json │ │ ├── hmr.json │ │ ├── js │ │ ├── app.js │ │ ├── app.js.map │ │ ├── editor.js │ │ └── editor.js.map │ │ └── manifest.json │ ├── bud_v6_single_runtime_hmr_esm │ └── public │ │ ├── entrypoints.json │ │ ├── hmr.json │ │ ├── js │ │ ├── app.mjs │ │ ├── app.mjs.map │ │ ├── editor.mjs │ │ └── editor.mjs.map │ │ └── manifest.json │ ├── mix_no_bundle │ └── public │ │ ├── fonts │ │ └── .gitkeep │ │ ├── images │ │ └── .gitkeep │ │ ├── mix-manifest.json │ │ ├── scripts │ │ ├── app.js │ │ ├── app.js.map │ │ ├── customizer.js │ │ ├── customizer.js.map │ │ ├── editor.js │ │ ├── editor.js.map │ │ ├── manifest.asset.php │ │ ├── manifest.js │ │ └── manifest.js.map │ │ └── styles │ │ ├── app.css │ │ ├── app.css.map │ │ ├── editor.css │ │ └── editor.css.map │ └── mix_no_bundle_hmr │ └── public │ ├── fonts │ └── .gitkeep │ ├── hot │ ├── images │ └── .gitkeep │ ├── mix-manifest.json │ ├── scripts │ ├── app.js │ ├── customizer.js │ ├── editor.js │ ├── manifest.asset.php │ └── manifest.js │ └── styles │ ├── app.css │ └── editor.css ├── Bootstrap ├── HandleExceptionsRegistrationTest.php └── HandleExceptionsTest.php ├── Console └── ConsoleTest.php ├── Exceptions ├── HandlerTest.php └── WhoopsHandlerTest.php ├── Filesystem ├── FilesystemTest.php └── __fixtures__ │ └── closest │ ├── a │ └── b │ │ └── bdubs.txt │ └── kjo.txt ├── Helpers.php ├── Integration └── Routing │ ├── RoutingTest.php │ └── RoutingTestCase.php ├── Sage └── SageTest.php ├── Test ├── Concerns │ ├── SupportsGlobalStubs.php │ ├── SupportsScopedFixtures.php │ ├── SupportsScopedSnapshots.php │ └── SupportsWordPressStubs.php ├── Stubs │ ├── BootableServiceProvider.php │ └── EmptyClass.php └── TestCase.php ├── View └── ViewTest.php ├── __snapshots__ ├── AssetTest__it_can_convert_json_to_array__1.yml ├── AssetTest__it_can_create_a_base64_data_URL__1.txt ├── AssetTest__it_can_create_a_data_URL__1.txt ├── AssetTest__it_can_decode_json__1.yml ├── AssetTest__it_can_get_a_relative_path__1.txt ├── AssetTest__it_can_include__once_a_php_asset__1.yml ├── AssetTest__it_can_include_a_php_asset__1.txt ├── AssetTest__it_can_re_encode_json__1.txt ├── AssetTest__it_can_require__once_a_php_asset__1.yml ├── AssetTest__it_can_require_a_php_asset__1.txt ├── AssetsHelpersTest__it_asset___can_access_a_specified_manifest__1.txt ├── AssetsHelpersTest__it_asset___can_access_the_default_manifest__1.txt ├── AssetsHelpersTest__it_bundle___can_access_a_specified_manifest__1.txt ├── AssetsHelpersTest__it_bundle___can_access_the_default_manifest__1.txt ├── AssetsServiceProviderTest__it_registers_a_default_manifest__1.txt ├── BladeDirectiveTest__it_loads_an_asset__1.txt ├── BundleTest__it_accepts_a_callback_for_styles_and_scripts__1.yml ├── BundleTest__it_accepts_a_callback_for_styles_and_scripts__2.yml ├── BundleTest__it_can_add_editor_styles__1.yml ├── BundleTest__it_can_conditionally_get_assets__1.json ├── BundleTest__it_can_dequeue_css__1.yml ├── BundleTest__it_can_dequeue_js__1.yml ├── BundleTest__it_can_enqueue_css__1.yml ├── BundleTest__it_can_enqueue_js__1.yml ├── BundleTest__it_can_get_styles_and_scripts_collections__1.json ├── BundleTest__it_can_get_styles_and_scripts_collections__2.json ├── BundleTest__it_can_inline_a_single_runtime__1.yml ├── LaravelMixMiddlewareTest__it_modifies_url_when_hot_file_is_present__1.txt ├── LaravelMixMiddlewareTest__it_skips_url_modification_if_hot_file_is_absent__1.txt ├── ManagerTest__it_reads_a_bundles_manifest__1.txt ├── ManagerTest__it_reads_a_bundles_manifest__2.txt ├── ManagerTest__it_reads_a_bundles_manifest__3.txt ├── ManagerTest__it_reads_a_mix_manifest__1.txt ├── ManagerTest__it_reads_a_mix_manifest__2.txt ├── ManagerTest__it_reads_an_assets_manifest__1.txt ├── ManagerTest__it_reads_an_assets_manifest__2.txt ├── ManagerTest__it_reads_multiple_manifests__1.txt ├── ManagerTest__it_reads_multiple_manifests__2.txt ├── RootsBudMiddlewareTest__it_modifies_url_when_hmr_file_is_present_with_matching_dev_origin__1.txt ├── RootsBudMiddlewareTest__it_skips_url_modification_if_dev_origin_is_invalid__1.txt └── RootsBudMiddlewareTest__it_skips_url_modification_if_hmr_file_is_absent__1.txt ├── api.php └── bootstrap.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/README.md -------------------------------------------------------------------------------- /bin/acorn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/bin/acorn -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/composer.json -------------------------------------------------------------------------------- /config-stubs/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/config-stubs/app.php -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/config/app.php -------------------------------------------------------------------------------- /config/assets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/config/assets.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/concurrency.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/config/concurrency.php -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/config/cors.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/config/session.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/config/view.php -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /pint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/pint.json -------------------------------------------------------------------------------- /src/Illuminate/Foundation/AliasLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/AliasLoader.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Application.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Auth/Access/Authorizable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Auth/Access/Authorizable.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Auth/Access/AuthorizesRequests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Auth/Access/AuthorizesRequests.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Auth/EmailVerificationRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Auth/EmailVerificationRequest.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Auth/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Auth/User.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Bootstrap/BootProviders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Bootstrap/BootProviders.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Bootstrap/HandleExceptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Bootstrap/HandleExceptions.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Bootstrap/LoadConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Bootstrap/LoadConfiguration.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Bootstrap/LoadEnvironmentVariables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Bootstrap/LoadEnvironmentVariables.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Bootstrap/RegisterFacades.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Bootstrap/RegisterFacades.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Bootstrap/RegisterProviders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Bootstrap/RegisterProviders.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Bootstrap/SetRequestForConsole.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Bootstrap/SetRequestForConsole.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Bus/Dispatchable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Bus/Dispatchable.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Bus/DispatchesJobs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Bus/DispatchesJobs.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Bus/PendingChain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Bus/PendingChain.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Bus/PendingClosureDispatch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Bus/PendingClosureDispatch.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Bus/PendingDispatch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Bus/PendingDispatch.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/CacheBasedMaintenanceMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/CacheBasedMaintenanceMode.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Cloud.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Cloud.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/ComposerScripts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/ComposerScripts.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Concerns/ResolvesDumpSource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Concerns/ResolvesDumpSource.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Configuration/ApplicationBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Configuration/ApplicationBuilder.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Configuration/Exceptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Configuration/Exceptions.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Configuration/Middleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Configuration/Middleware.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/AboutCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/AboutCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/ApiInstallCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/ApiInstallCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/BroadcastingInstallCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/BroadcastingInstallCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/CastMakeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/CastMakeCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/ChannelListCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/ChannelListCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/ChannelMakeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/ChannelMakeCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/ClassMakeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/ClassMakeCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/ClearCompiledCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/ClearCompiledCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/CliDumper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/CliDumper.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/ClosureCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/ClosureCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/ComponentMakeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/ComponentMakeCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/ConfigCacheCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/ConfigCacheCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/ConfigClearCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/ConfigClearCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/ConfigPublishCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/ConfigPublishCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/ConfigShowCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/ConfigShowCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/ConsoleMakeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/ConsoleMakeCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/DocsCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/DocsCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/DownCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/DownCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/EnumMakeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/EnumMakeCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/EnvironmentCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/EnvironmentCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/EnvironmentDecryptCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/EnvironmentDecryptCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/EnvironmentEncryptCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/EnvironmentEncryptCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/EventCacheCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/EventCacheCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/EventClearCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/EventClearCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/EventGenerateCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/EventGenerateCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/EventListCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/EventListCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/EventMakeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/EventMakeCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/ExceptionMakeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/ExceptionMakeCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/InteractsWithComposerPackages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/InteractsWithComposerPackages.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/InterfaceMakeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/InterfaceMakeCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/JobMakeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/JobMakeCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/JobMiddlewareMakeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/JobMiddlewareMakeCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/Kernel.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/KeyGenerateCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/KeyGenerateCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/LangPublishCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/LangPublishCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/ListenerMakeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/ListenerMakeCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/MailMakeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/MailMakeCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/ModelMakeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/ModelMakeCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/NotificationMakeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/NotificationMakeCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/ObserverMakeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/ObserverMakeCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/OptimizeClearCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/OptimizeClearCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/OptimizeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/OptimizeCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/PackageDiscoverCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/PackageDiscoverCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/PolicyMakeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/PolicyMakeCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/ProviderMakeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/ProviderMakeCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/QueuedCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/QueuedCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/RequestMakeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/RequestMakeCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/ResourceMakeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/ResourceMakeCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/RouteCacheCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/RouteCacheCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/RouteClearCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/RouteClearCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/RouteListCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/RouteListCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/RuleMakeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/RuleMakeCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/ScopeMakeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/ScopeMakeCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/ServeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/ServeCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/StorageLinkCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/StorageLinkCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/StorageUnlinkCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/StorageUnlinkCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/StubPublishCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/StubPublishCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/TestMakeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/TestMakeCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/TraitMakeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/TraitMakeCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/UpCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/UpCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/VendorPublishCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/VendorPublishCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/ViewCacheCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/ViewCacheCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/ViewClearCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/ViewClearCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/ViewMakeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/ViewMakeCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/api-routes.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/stubs/api-routes.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/broadcasting-routes.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/stubs/broadcasting-routes.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/cast.inbound.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/stubs/cast.inbound.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/cast.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/stubs/cast.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/channel.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/stubs/channel.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/class.invokable.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/stubs/class.invokable.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/class.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/stubs/class.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/console.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/stubs/console.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/echo-bootstrap-js.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/stubs/echo-bootstrap-js.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/echo-js-ably.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/stubs/echo-js-ably.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/echo-js-pusher.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/stubs/echo-js-pusher.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/echo-js-reverb.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/stubs/echo-js-reverb.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/enum.backed.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/stubs/enum.backed.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/enum.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/stubs/enum.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/event.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/stubs/event.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/exception-render-report.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/stubs/exception-render-report.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/exception-render.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/stubs/exception-render.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/exception-report.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/stubs/exception-report.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/exception.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/stubs/exception.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/interface.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/stubs/interface.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/job.middleware.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/stubs/job.middleware.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/job.queued.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/stubs/job.queued.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/job.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/stubs/job.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/listener.queued.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/stubs/listener.queued.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/listener.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/stubs/listener.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/listener.typed.queued.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/stubs/listener.typed.queued.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/listener.typed.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/stubs/listener.typed.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/mail.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/stubs/mail.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/maintenance-mode.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/stubs/maintenance-mode.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/markdown-mail.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/stubs/markdown-mail.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/markdown-notification.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/stubs/markdown-notification.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/markdown.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/stubs/markdown.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/model.morph-pivot.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/stubs/model.morph-pivot.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/model.pivot.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/stubs/model.pivot.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/model.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/stubs/model.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/notification.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/stubs/notification.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/observer.plain.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/stubs/observer.plain.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/observer.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/stubs/observer.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/pest.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/stubs/pest.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/pest.unit.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/stubs/pest.unit.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/policy.plain.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/stubs/policy.plain.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/policy.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/stubs/policy.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/provider.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/stubs/provider.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/request.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/stubs/request.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/resource-collection.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/stubs/resource-collection.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/resource.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/stubs/resource.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/routes.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/stubs/routes.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/rule.implicit.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/stubs/rule.implicit.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/rule.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/stubs/rule.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/scope.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/stubs/scope.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/test.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/stubs/test.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/test.unit.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/stubs/test.unit.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/trait.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/stubs/trait.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/view-component.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/stubs/view-component.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/view-mail.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/stubs/view-mail.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/view.pest.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/stubs/view.pest.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/view.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/stubs/view.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/view.test.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Console/stubs/view.test.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/EnvironmentDetector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/EnvironmentDetector.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Events/DiagnosingHealth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Events/DiagnosingHealth.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Events/DiscoverEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Events/DiscoverEvents.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Events/Dispatchable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Events/Dispatchable.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Events/LocaleUpdated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Events/LocaleUpdated.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Events/MaintenanceModeDisabled.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Events/MaintenanceModeDisabled.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Events/MaintenanceModeEnabled.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Events/MaintenanceModeEnabled.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Events/PublishingStubs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Events/PublishingStubs.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Events/Terminating.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Events/Terminating.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Events/VendorTagPublished.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Events/VendorTagPublished.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Exceptions/Handler.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Exceptions/RegisterErrorViewPaths.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Exceptions/RegisterErrorViewPaths.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Exceptions/Renderer/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Exceptions/Renderer/Exception.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Exceptions/Renderer/Frame.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Exceptions/Renderer/Frame.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Exceptions/Renderer/Listener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Exceptions/Renderer/Listener.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Exceptions/Renderer/Mappers/BladeMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Exceptions/Renderer/Mappers/BladeMapper.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Exceptions/Renderer/Renderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Exceptions/Renderer/Renderer.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Exceptions/ReportableHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Exceptions/ReportableHandler.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Exceptions/Whoops/WhoopsExceptionRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Exceptions/Whoops/WhoopsExceptionRenderer.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Exceptions/Whoops/WhoopsHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Exceptions/Whoops/WhoopsHandler.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Exceptions/views/401.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Exceptions/views/401.blade.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Exceptions/views/402.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Exceptions/views/402.blade.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Exceptions/views/403.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Exceptions/views/403.blade.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Exceptions/views/404.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Exceptions/views/404.blade.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Exceptions/views/419.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Exceptions/views/419.blade.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Exceptions/views/429.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Exceptions/views/429.blade.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Exceptions/views/500.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Exceptions/views/500.blade.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Exceptions/views/503.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Exceptions/views/503.blade.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Exceptions/views/layout.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Exceptions/views/layout.blade.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Exceptions/views/minimal.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Exceptions/views/minimal.blade.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/FileBasedMaintenanceMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/FileBasedMaintenanceMode.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Http/Events/RequestHandled.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Http/Events/RequestHandled.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Http/FormRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Http/FormRequest.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Http/HtmlDumper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Http/HtmlDumper.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Http/Kernel.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Http/MaintenanceModeBypassCookie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Http/MaintenanceModeBypassCookie.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Http/Middleware/CheckForMaintenanceMode.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Http/Middleware/Concerns/ExcludesPaths.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Http/Middleware/Concerns/ExcludesPaths.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Http/Middleware/ConvertEmptyStringsToNull.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Http/Middleware/HandlePrecognitiveRequests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Http/Middleware/HandlePrecognitiveRequests.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Http/Middleware/InvokeDeferredCallbacks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Http/Middleware/InvokeDeferredCallbacks.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Http/Middleware/PreventRequestsDuringMaintenance.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Http/Middleware/TransformsRequest.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Http/Middleware/ValidateCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Http/Middleware/ValidateCsrfToken.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Http/Middleware/ValidatePostSize.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Inspiring.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Inspiring.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/MaintenanceModeManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/MaintenanceModeManager.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Mix.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Mix.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/MixFileNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/MixFileNotFoundException.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/MixManifestNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/MixManifestNotFoundException.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/PackageManifest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/PackageManifest.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Precognition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Precognition.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/ProviderRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/ProviderRepository.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Providers/ArtisanServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Providers/ArtisanServiceProvider.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Providers/ComposerServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Providers/ComposerServiceProvider.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Providers/ConsoleSupportServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Providers/ConsoleSupportServiceProvider.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Providers/FormRequestServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Providers/FormRequestServiceProvider.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Providers/FoundationServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Providers/FoundationServiceProvider.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Queue/InteractsWithUniqueJobs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Queue/InteractsWithUniqueJobs.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Queue/Queueable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Queue/Queueable.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Routing/PrecognitionCallableDispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Routing/PrecognitionCallableDispatcher.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Routing/PrecognitionControllerDispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Routing/PrecognitionControllerDispatcher.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Support/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Support/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Support/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Support/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Support/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Support/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Testing/Concerns/InteractsWithAuthentication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Testing/Concerns/InteractsWithAuthentication.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Testing/Concerns/InteractsWithConsole.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Testing/Concerns/InteractsWithConsole.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Testing/Concerns/InteractsWithContainer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Testing/Concerns/InteractsWithContainer.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Testing/Concerns/InteractsWithDatabase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Testing/Concerns/InteractsWithDatabase.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Testing/Concerns/InteractsWithDeprecationHandling.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Testing/Concerns/InteractsWithDeprecationHandling.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Testing/Concerns/InteractsWithExceptionHandling.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Testing/Concerns/InteractsWithExceptionHandling.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Testing/Concerns/InteractsWithRedis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Testing/Concerns/InteractsWithRedis.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Testing/Concerns/InteractsWithSession.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Testing/Concerns/InteractsWithSession.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Testing/Concerns/InteractsWithTestCaseLifecycle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Testing/Concerns/InteractsWithTestCaseLifecycle.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Testing/Concerns/InteractsWithTime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Testing/Concerns/InteractsWithTime.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Testing/Concerns/InteractsWithViews.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Testing/Concerns/InteractsWithViews.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Testing/Concerns/MakesHttpRequests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Testing/Concerns/MakesHttpRequests.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Testing/Concerns/WithoutExceptionHandlingHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Testing/Concerns/WithoutExceptionHandlingHandler.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Testing/DatabaseMigrations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Testing/DatabaseMigrations.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Testing/DatabaseTransactions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Testing/DatabaseTransactions.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Testing/DatabaseTransactionsManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Testing/DatabaseTransactionsManager.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Testing/DatabaseTruncation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Testing/DatabaseTruncation.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Testing/LazilyRefreshDatabase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Testing/LazilyRefreshDatabase.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Testing/RefreshDatabase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Testing/RefreshDatabase.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Testing/RefreshDatabaseState.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Testing/RefreshDatabaseState.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Testing/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Testing/TestCase.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Testing/Traits/CanConfigureMigrationCommands.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Testing/Traits/CanConfigureMigrationCommands.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Testing/WithConsoleEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Testing/WithConsoleEvents.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Testing/WithFaker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Testing/WithFaker.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Testing/WithoutMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Testing/WithoutMiddleware.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Testing/Wormhole.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Testing/Wormhole.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Validation/ValidatesRequests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Validation/ValidatesRequests.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Vite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/Vite.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/ViteException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/ViteException.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/ViteManifestNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/ViteManifestNotFoundException.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/helpers.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/resources/exceptions/renderer/components/card.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/resources/exceptions/renderer/components/card.blade.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/resources/exceptions/renderer/components/context.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/resources/exceptions/renderer/components/context.blade.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/resources/exceptions/renderer/components/editor.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/resources/exceptions/renderer/components/editor.blade.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/resources/exceptions/renderer/components/header.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/resources/exceptions/renderer/components/header.blade.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/resources/exceptions/renderer/components/icons/chevron-down.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/resources/exceptions/renderer/components/icons/chevron-down.blade.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/resources/exceptions/renderer/components/icons/chevron-up.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/resources/exceptions/renderer/components/icons/chevron-up.blade.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/resources/exceptions/renderer/components/icons/computer-desktop.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/resources/exceptions/renderer/components/icons/computer-desktop.blade.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/resources/exceptions/renderer/components/icons/moon.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/resources/exceptions/renderer/components/icons/moon.blade.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/resources/exceptions/renderer/components/icons/sun.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/resources/exceptions/renderer/components/icons/sun.blade.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/resources/exceptions/renderer/components/layout.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/resources/exceptions/renderer/components/layout.blade.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/resources/exceptions/renderer/components/navigation.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/resources/exceptions/renderer/components/navigation.blade.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/resources/exceptions/renderer/components/theme-switcher.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/resources/exceptions/renderer/components/theme-switcher.blade.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/resources/exceptions/renderer/components/trace-and-editor.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/resources/exceptions/renderer/components/trace-and-editor.blade.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/resources/exceptions/renderer/components/trace.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/resources/exceptions/renderer/components/trace.blade.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/resources/exceptions/renderer/dark-mode.css: -------------------------------------------------------------------------------- 1 | @import 'highlight.js/styles/atom-one-dark.min.css'; 2 | -------------------------------------------------------------------------------- /src/Illuminate/Foundation/resources/exceptions/renderer/dist/dark-mode.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/resources/exceptions/renderer/dist/dark-mode.css -------------------------------------------------------------------------------- /src/Illuminate/Foundation/resources/exceptions/renderer/dist/light-mode.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/resources/exceptions/renderer/dist/light-mode.css -------------------------------------------------------------------------------- /src/Illuminate/Foundation/resources/exceptions/renderer/dist/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/resources/exceptions/renderer/dist/scripts.js -------------------------------------------------------------------------------- /src/Illuminate/Foundation/resources/exceptions/renderer/dist/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/resources/exceptions/renderer/dist/styles.css -------------------------------------------------------------------------------- /src/Illuminate/Foundation/resources/exceptions/renderer/light-mode.css: -------------------------------------------------------------------------------- 1 | @import 'highlight.js/styles/github.min.css'; 2 | -------------------------------------------------------------------------------- /src/Illuminate/Foundation/resources/exceptions/renderer/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/resources/exceptions/renderer/package-lock.json -------------------------------------------------------------------------------- /src/Illuminate/Foundation/resources/exceptions/renderer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/resources/exceptions/renderer/package.json -------------------------------------------------------------------------------- /src/Illuminate/Foundation/resources/exceptions/renderer/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/resources/exceptions/renderer/postcss.config.js -------------------------------------------------------------------------------- /src/Illuminate/Foundation/resources/exceptions/renderer/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/resources/exceptions/renderer/scripts.js -------------------------------------------------------------------------------- /src/Illuminate/Foundation/resources/exceptions/renderer/show.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/resources/exceptions/renderer/show.blade.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/resources/exceptions/renderer/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/resources/exceptions/renderer/styles.css -------------------------------------------------------------------------------- /src/Illuminate/Foundation/resources/exceptions/renderer/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/resources/exceptions/renderer/tailwind.config.js -------------------------------------------------------------------------------- /src/Illuminate/Foundation/resources/exceptions/renderer/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/resources/exceptions/renderer/vite.config.js -------------------------------------------------------------------------------- /src/Illuminate/Foundation/resources/health-up.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/resources/health-up.blade.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/resources/server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/resources/server.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/stubs/facade.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Illuminate/Foundation/stubs/facade.stub -------------------------------------------------------------------------------- /src/Roots/Acorn/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/Application.php -------------------------------------------------------------------------------- /src/Roots/Acorn/Application/Concerns/Bootable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/Application/Concerns/Bootable.php -------------------------------------------------------------------------------- /src/Roots/Acorn/Assets/Asset/Asset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/Assets/Asset/Asset.php -------------------------------------------------------------------------------- /src/Roots/Acorn/Assets/Asset/JsonAsset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/Assets/Asset/JsonAsset.php -------------------------------------------------------------------------------- /src/Roots/Acorn/Assets/Asset/PhpAsset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/Assets/Asset/PhpAsset.php -------------------------------------------------------------------------------- /src/Roots/Acorn/Assets/Asset/SvgAsset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/Assets/Asset/SvgAsset.php -------------------------------------------------------------------------------- /src/Roots/Acorn/Assets/Asset/TextAsset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/Assets/Asset/TextAsset.php -------------------------------------------------------------------------------- /src/Roots/Acorn/Assets/AssetFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/Assets/AssetFactory.php -------------------------------------------------------------------------------- /src/Roots/Acorn/Assets/AssetsServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/Assets/AssetsServiceProvider.php -------------------------------------------------------------------------------- /src/Roots/Acorn/Assets/Bundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/Assets/Bundle.php -------------------------------------------------------------------------------- /src/Roots/Acorn/Assets/Concerns/Conditional.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/Assets/Concerns/Conditional.php -------------------------------------------------------------------------------- /src/Roots/Acorn/Assets/Concerns/Enqueuable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/Assets/Concerns/Enqueuable.php -------------------------------------------------------------------------------- /src/Roots/Acorn/Assets/Contracts/Asset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/Assets/Contracts/Asset.php -------------------------------------------------------------------------------- /src/Roots/Acorn/Assets/Contracts/Bundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/Assets/Contracts/Bundle.php -------------------------------------------------------------------------------- /src/Roots/Acorn/Assets/Contracts/Manifest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/Assets/Contracts/Manifest.php -------------------------------------------------------------------------------- /src/Roots/Acorn/Assets/Contracts/ManifestNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/Assets/Contracts/ManifestNotFoundException.php -------------------------------------------------------------------------------- /src/Roots/Acorn/Assets/Exceptions/BundleNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/Assets/Exceptions/BundleNotFoundException.php -------------------------------------------------------------------------------- /src/Roots/Acorn/Assets/Exceptions/ManifestNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/Assets/Exceptions/ManifestNotFoundException.php -------------------------------------------------------------------------------- /src/Roots/Acorn/Assets/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/Assets/Manager.php -------------------------------------------------------------------------------- /src/Roots/Acorn/Assets/Manifest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/Assets/Manifest.php -------------------------------------------------------------------------------- /src/Roots/Acorn/Assets/Middleware/LaravelMixMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/Assets/Middleware/LaravelMixMiddleware.php -------------------------------------------------------------------------------- /src/Roots/Acorn/Assets/Middleware/RootsBudMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/Assets/Middleware/RootsBudMiddleware.php -------------------------------------------------------------------------------- /src/Roots/Acorn/Assets/Middleware/ViteMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/Assets/Middleware/ViteMiddleware.php -------------------------------------------------------------------------------- /src/Roots/Acorn/Assets/View/BladeDirective.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/Assets/View/BladeDirective.php -------------------------------------------------------------------------------- /src/Roots/Acorn/Assets/Vite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/Assets/Vite.php -------------------------------------------------------------------------------- /src/Roots/Acorn/Bootstrap/HandleExceptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/Bootstrap/HandleExceptions.php -------------------------------------------------------------------------------- /src/Roots/Acorn/Bootstrap/LoadConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/Bootstrap/LoadConfiguration.php -------------------------------------------------------------------------------- /src/Roots/Acorn/Bootstrap/RegisterFacades.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/Bootstrap/RegisterFacades.php -------------------------------------------------------------------------------- /src/Roots/Acorn/ComposerScripts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/ComposerScripts.php -------------------------------------------------------------------------------- /src/Roots/Acorn/Configuration/ApplicationBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/Configuration/ApplicationBuilder.php -------------------------------------------------------------------------------- /src/Roots/Acorn/Configuration/Concerns/Paths.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/Configuration/Concerns/Paths.php -------------------------------------------------------------------------------- /src/Roots/Acorn/Configuration/Exceptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/Configuration/Exceptions.php -------------------------------------------------------------------------------- /src/Roots/Acorn/Configuration/Middleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/Configuration/Middleware.php -------------------------------------------------------------------------------- /src/Roots/Acorn/Console/Commands/AboutCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/Console/Commands/AboutCommand.php -------------------------------------------------------------------------------- /src/Roots/Acorn/Console/Commands/AcornInitCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/Console/Commands/AcornInitCommand.php -------------------------------------------------------------------------------- /src/Roots/Acorn/Console/Commands/AcornInstallCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/Console/Commands/AcornInstallCommand.php -------------------------------------------------------------------------------- /src/Roots/Acorn/Console/Commands/Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/Console/Commands/Command.php -------------------------------------------------------------------------------- /src/Roots/Acorn/Console/Commands/ComposerMakeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/Console/Commands/ComposerMakeCommand.php -------------------------------------------------------------------------------- /src/Roots/Acorn/Console/Commands/ConfigCacheCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/Console/Commands/ConfigCacheCommand.php -------------------------------------------------------------------------------- /src/Roots/Acorn/Console/Commands/GeneratorCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/Console/Commands/GeneratorCommand.php -------------------------------------------------------------------------------- /src/Roots/Acorn/Console/Commands/KeyGenerateCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/Console/Commands/KeyGenerateCommand.php -------------------------------------------------------------------------------- /src/Roots/Acorn/Console/Commands/OptimizeClearCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/Console/Commands/OptimizeClearCommand.php -------------------------------------------------------------------------------- /src/Roots/Acorn/Console/Commands/OptimizeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/Console/Commands/OptimizeCommand.php -------------------------------------------------------------------------------- /src/Roots/Acorn/Console/Commands/RouteCacheCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/Console/Commands/RouteCacheCommand.php -------------------------------------------------------------------------------- /src/Roots/Acorn/Console/Commands/SummaryCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/Console/Commands/SummaryCommand.php -------------------------------------------------------------------------------- /src/Roots/Acorn/Console/Commands/VendorPublishCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/Console/Commands/VendorPublishCommand.php -------------------------------------------------------------------------------- /src/Roots/Acorn/Console/Commands/stubs/composer.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/Console/Commands/stubs/composer.stub -------------------------------------------------------------------------------- /src/Roots/Acorn/Console/Commands/stubs/paths/storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /src/Roots/Acorn/Console/Commands/stubs/paths/storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /src/Roots/Acorn/Console/Commands/stubs/paths/storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /src/Roots/Acorn/Console/Commands/stubs/paths/storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /src/Roots/Acorn/Console/Commands/stubs/paths/storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /src/Roots/Acorn/Console/Concerns/GetsFreshApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/Console/Concerns/GetsFreshApplication.php -------------------------------------------------------------------------------- /src/Roots/Acorn/Console/Concerns/GracefullyCallsCommands.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/Console/Concerns/GracefullyCallsCommands.php -------------------------------------------------------------------------------- /src/Roots/Acorn/Console/Console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/Console/Console.php -------------------------------------------------------------------------------- /src/Roots/Acorn/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/Console/Kernel.php -------------------------------------------------------------------------------- /src/Roots/Acorn/DefaultProviders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/DefaultProviders.php -------------------------------------------------------------------------------- /src/Roots/Acorn/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/Exceptions/Handler.php -------------------------------------------------------------------------------- /src/Roots/Acorn/Exceptions/SkipProviderException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/Exceptions/SkipProviderException.php -------------------------------------------------------------------------------- /src/Roots/Acorn/Exceptions/Whoops/WhoopsExceptionRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/Exceptions/Whoops/WhoopsExceptionRenderer.php -------------------------------------------------------------------------------- /src/Roots/Acorn/Exceptions/Whoops/WhoopsHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/Exceptions/Whoops/WhoopsHandler.php -------------------------------------------------------------------------------- /src/Roots/Acorn/Filesystem/Filesystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/Filesystem/Filesystem.php -------------------------------------------------------------------------------- /src/Roots/Acorn/Filesystem/FilesystemServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/Filesystem/FilesystemServiceProvider.php -------------------------------------------------------------------------------- /src/Roots/Acorn/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/Http/Kernel.php -------------------------------------------------------------------------------- /src/Roots/Acorn/PackageManifest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/PackageManifest.php -------------------------------------------------------------------------------- /src/Roots/Acorn/Providers/AcornServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/Providers/AcornServiceProvider.php -------------------------------------------------------------------------------- /src/Roots/Acorn/Providers/QueueServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/Providers/QueueServiceProvider.php -------------------------------------------------------------------------------- /src/Roots/Acorn/Sage/Concerns/FiltersBodyClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/Sage/Concerns/FiltersBodyClass.php -------------------------------------------------------------------------------- /src/Roots/Acorn/Sage/Concerns/FiltersEnqueues.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/Sage/Concerns/FiltersEnqueues.php -------------------------------------------------------------------------------- /src/Roots/Acorn/Sage/Concerns/FiltersTemplates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/Sage/Concerns/FiltersTemplates.php -------------------------------------------------------------------------------- /src/Roots/Acorn/Sage/Concerns/FiltersThePost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/Sage/Concerns/FiltersThePost.php -------------------------------------------------------------------------------- /src/Roots/Acorn/Sage/Concerns/FiltersViews.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/Sage/Concerns/FiltersViews.php -------------------------------------------------------------------------------- /src/Roots/Acorn/Sage/Sage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/Sage/Sage.php -------------------------------------------------------------------------------- /src/Roots/Acorn/Sage/SageServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/Sage/SageServiceProvider.php -------------------------------------------------------------------------------- /src/Roots/Acorn/Sage/ViewFinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/Sage/ViewFinder.php -------------------------------------------------------------------------------- /src/Roots/Acorn/ServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/ServiceProvider.php -------------------------------------------------------------------------------- /src/Roots/Acorn/View/Component.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/View/Component.php -------------------------------------------------------------------------------- /src/Roots/Acorn/View/Composer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/View/Composer.php -------------------------------------------------------------------------------- /src/Roots/Acorn/View/Composers/Concerns/AcfFields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/View/Composers/Concerns/AcfFields.php -------------------------------------------------------------------------------- /src/Roots/Acorn/View/Composers/Concerns/Arrayable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/View/Composers/Concerns/Arrayable.php -------------------------------------------------------------------------------- /src/Roots/Acorn/View/Composers/Concerns/Cacheable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/View/Composers/Concerns/Cacheable.php -------------------------------------------------------------------------------- /src/Roots/Acorn/View/Composers/Concerns/Extractable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/View/Composers/Concerns/Extractable.php -------------------------------------------------------------------------------- /src/Roots/Acorn/View/Composers/Debugger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/View/Composers/Debugger.php -------------------------------------------------------------------------------- /src/Roots/Acorn/View/FileViewFinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/View/FileViewFinder.php -------------------------------------------------------------------------------- /src/Roots/Acorn/View/ViewServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/Acorn/View/ViewServiceProvider.php -------------------------------------------------------------------------------- /src/Roots/globals.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/globals.php -------------------------------------------------------------------------------- /src/Roots/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/Roots/helpers.php -------------------------------------------------------------------------------- /src/_ide-helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/src/_ide-helpers.php -------------------------------------------------------------------------------- /tests/Application/ApplicationBuilderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/tests/Application/ApplicationBuilderTest.php -------------------------------------------------------------------------------- /tests/Application/ApplicationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/tests/Application/ApplicationTest.php -------------------------------------------------------------------------------- /tests/Application/DefaultProvidersTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/tests/Application/DefaultProvidersTest.php -------------------------------------------------------------------------------- /tests/Application/__fixtures__/base_path/base_app/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/Application/__fixtures__/base_path/base_composer/composer.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/Application/__fixtures__/base_path/base_empty/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/Application/__fixtures__/get_namespace/a_bedrock_site/a_random_library/composer.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /tests/Application/__fixtures__/get_namespace/a_bedrock_site/a_sage_theme/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/Application/__fixtures__/get_namespace/a_bedrock_site/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/tests/Application/__fixtures__/get_namespace/a_bedrock_site/composer.json -------------------------------------------------------------------------------- /tests/Application/__fixtures__/get_namespace/a_sage_theme/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/Application/__fixtures__/get_namespace/a_sage_theme/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/tests/Application/__fixtures__/get_namespace/a_sage_theme/composer.json -------------------------------------------------------------------------------- /tests/Application/__fixtures__/is_down_for_maintenance/storage/framework/down: -------------------------------------------------------------------------------- 1 | // 2 | -------------------------------------------------------------------------------- /tests/Application/__fixtures__/is_down_for_maintenance/wp/.maintenance: -------------------------------------------------------------------------------- 1 | // 2 | -------------------------------------------------------------------------------- /tests/Application/__fixtures__/use_paths/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/Application/__fixtures__/use_paths/bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/Application/__fixtures__/use_paths/composer.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/Application/__fixtures__/use_paths/config/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/Application/__fixtures__/use_paths/database/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/Application/__fixtures__/use_paths/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/Application/__fixtures__/use_paths/resources/lang/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/Application/__fixtures__/use_paths/storage/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/Assets/AssetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/tests/Assets/AssetTest.php -------------------------------------------------------------------------------- /tests/Assets/AssetsHelpersTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/tests/Assets/AssetsHelpersTest.php -------------------------------------------------------------------------------- /tests/Assets/AssetsServiceProviderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/tests/Assets/AssetsServiceProviderTest.php -------------------------------------------------------------------------------- /tests/Assets/BladeDirectiveTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/tests/Assets/BladeDirectiveTest.php -------------------------------------------------------------------------------- /tests/Assets/BudCompatibilityTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/tests/Assets/BudCompatibilityTest.php -------------------------------------------------------------------------------- /tests/Assets/BundleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/tests/Assets/BundleTest.php -------------------------------------------------------------------------------- /tests/Assets/LaravelMixMiddlewareTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/tests/Assets/LaravelMixMiddlewareTest.php -------------------------------------------------------------------------------- /tests/Assets/ManagerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/tests/Assets/ManagerTest.php -------------------------------------------------------------------------------- /tests/Assets/ManifestTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/tests/Assets/ManifestTest.php -------------------------------------------------------------------------------- /tests/Assets/RootsBudMiddlewareTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/tests/Assets/RootsBudMiddlewareTest.php -------------------------------------------------------------------------------- /tests/Assets/__fixtures__/asset_types/public/assets/apray.cache-busted.ext: -------------------------------------------------------------------------------- 1 | apray 2 | -------------------------------------------------------------------------------- /tests/Assets/__fixtures__/asset_types/public/assets/bdubs.cache-busted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/tests/Assets/__fixtures__/asset_types/public/assets/bdubs.cache-busted.svg -------------------------------------------------------------------------------- /tests/Assets/__fixtures__/asset_types/public/assets/bnif.cache-busted.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/__snapshots__/BundleTest__it_accepts_a_callback_for_styles_and_scripts__1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/tests/__snapshots__/BundleTest__it_accepts_a_callback_for_styles_and_scripts__1.yml -------------------------------------------------------------------------------- /tests/__snapshots__/BundleTest__it_accepts_a_callback_for_styles_and_scripts__2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/tests/__snapshots__/BundleTest__it_accepts_a_callback_for_styles_and_scripts__2.yml -------------------------------------------------------------------------------- /tests/__snapshots__/BundleTest__it_can_add_editor_styles__1.yml: -------------------------------------------------------------------------------- 1 | - ../../bud_single_runtime/public/app.2.4476c5f869ee7584ba3c.css 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/BundleTest__it_can_conditionally_get_assets__1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/tests/__snapshots__/BundleTest__it_can_conditionally_get_assets__1.json -------------------------------------------------------------------------------- /tests/__snapshots__/BundleTest__it_can_dequeue_css__1.yml: -------------------------------------------------------------------------------- 1 | - app/app 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/BundleTest__it_can_dequeue_js__1.yml: -------------------------------------------------------------------------------- 1 | - app/app 2 | -------------------------------------------------------------------------------- /tests/__snapshots__/BundleTest__it_can_enqueue_css__1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/tests/__snapshots__/BundleTest__it_can_enqueue_css__1.yml -------------------------------------------------------------------------------- /tests/__snapshots__/BundleTest__it_can_enqueue_js__1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/tests/__snapshots__/BundleTest__it_can_enqueue_js__1.yml -------------------------------------------------------------------------------- /tests/__snapshots__/BundleTest__it_can_get_styles_and_scripts_collections__1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/tests/__snapshots__/BundleTest__it_can_get_styles_and_scripts_collections__1.json -------------------------------------------------------------------------------- /tests/__snapshots__/BundleTest__it_can_get_styles_and_scripts_collections__2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/tests/__snapshots__/BundleTest__it_can_get_styles_and_scripts_collections__2.json -------------------------------------------------------------------------------- /tests/__snapshots__/BundleTest__it_can_inline_a_single_runtime__1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/tests/__snapshots__/BundleTest__it_can_inline_a_single_runtime__1.yml -------------------------------------------------------------------------------- /tests/__snapshots__/LaravelMixMiddlewareTest__it_modifies_url_when_hot_file_is_present__1.txt: -------------------------------------------------------------------------------- 1 | //localhost:8080 -------------------------------------------------------------------------------- /tests/__snapshots__/LaravelMixMiddlewareTest__it_skips_url_modification_if_hot_file_is_absent__1.txt: -------------------------------------------------------------------------------- 1 | https://k.jo/public -------------------------------------------------------------------------------- /tests/__snapshots__/ManagerTest__it_reads_a_bundles_manifest__1.txt: -------------------------------------------------------------------------------- 1 | {"app":"public\/app.4476c5f869ee7584ba3c.js"} -------------------------------------------------------------------------------- /tests/__snapshots__/ManagerTest__it_reads_a_bundles_manifest__2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/tests/__snapshots__/ManagerTest__it_reads_a_bundles_manifest__2.txt -------------------------------------------------------------------------------- /tests/__snapshots__/ManagerTest__it_reads_a_bundles_manifest__3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/tests/__snapshots__/ManagerTest__it_reads_a_bundles_manifest__3.txt -------------------------------------------------------------------------------- /tests/__snapshots__/ManagerTest__it_reads_a_mix_manifest__1.txt: -------------------------------------------------------------------------------- 1 | https://k.jo/public/styles/app.css?id=6e0289a07deb38755b16 -------------------------------------------------------------------------------- /tests/__snapshots__/ManagerTest__it_reads_a_mix_manifest__2.txt: -------------------------------------------------------------------------------- 1 | https://k.jo/public/scripts/app.js?id=7b027d7f43c45c2f5e47 -------------------------------------------------------------------------------- /tests/__snapshots__/ManagerTest__it_reads_an_assets_manifest__1.txt: -------------------------------------------------------------------------------- 1 | https://k.jo/public/app.2.4476c5f869ee7584ba3c.css -------------------------------------------------------------------------------- /tests/__snapshots__/ManagerTest__it_reads_an_assets_manifest__2.txt: -------------------------------------------------------------------------------- 1 | https://k.jo/public/app.4476c5f869ee7584ba3c.js -------------------------------------------------------------------------------- /tests/__snapshots__/ManagerTest__it_reads_multiple_manifests__1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/tests/__snapshots__/ManagerTest__it_reads_multiple_manifests__1.txt -------------------------------------------------------------------------------- /tests/__snapshots__/ManagerTest__it_reads_multiple_manifests__2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/tests/__snapshots__/ManagerTest__it_reads_multiple_manifests__2.txt -------------------------------------------------------------------------------- /tests/__snapshots__/RootsBudMiddlewareTest__it_modifies_url_when_hmr_file_is_present_with_matching_dev_origin__1.txt: -------------------------------------------------------------------------------- 1 | //localhost:3000 -------------------------------------------------------------------------------- /tests/__snapshots__/RootsBudMiddlewareTest__it_skips_url_modification_if_dev_origin_is_invalid__1.txt: -------------------------------------------------------------------------------- 1 | https://k.jo/public -------------------------------------------------------------------------------- /tests/__snapshots__/RootsBudMiddlewareTest__it_skips_url_modification_if_hmr_file_is_absent__1.txt: -------------------------------------------------------------------------------- 1 | https://k.jo/public -------------------------------------------------------------------------------- /tests/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/tests/api.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roots/acorn/HEAD/tests/bootstrap.php --------------------------------------------------------------------------------