├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json ├── psalm-baseline.xml └── src ├── AnnotatedRoutes ├── LICENSE ├── README.md ├── composer.json └── src │ ├── Annotation │ └── Route.php │ ├── Bootloader │ └── AnnotatedRoutesBootloader.php │ └── RouteLocatorListener.php ├── Auth ├── LICENSE ├── README.md ├── composer.json └── src │ ├── ActorProviderInterface.php │ ├── AuthContext.php │ ├── AuthContextInterface.php │ ├── Event │ ├── Authenticated.php │ └── Logout.php │ ├── Exception │ ├── AuthException.php │ └── TokenStorageException.php │ ├── TokenInterface.php │ ├── TokenStorageInterface.php │ ├── TokenStorageProvider.php │ └── TokenStorageProviderInterface.php ├── AuthHttp ├── LICENSE ├── README.md ├── composer.json └── src │ ├── Exception │ └── TransportException.php │ ├── HttpTransportInterface.php │ ├── Middleware │ ├── AuthMiddleware.php │ ├── AuthTransportMiddleware.php │ ├── AuthTransportWithStorageMiddleware.php │ └── Firewall │ │ ├── AbstractFirewall.php │ │ ├── ExceptionFirewall.php │ │ ├── OverwriteFirewall.php │ │ └── RedirectFirewall.php │ ├── Transport │ ├── CookieTransport.php │ └── HeaderTransport.php │ └── TransportRegistry.php ├── Boot ├── LICENSE ├── README.md ├── composer.json └── src │ ├── AbstractKernel.php │ ├── Attribute │ ├── AbstractMethod.php │ ├── BindAlias.php │ ├── BindMethod.php │ ├── BindScope.php │ ├── BootMethod.php │ ├── BootloadConfig.php │ ├── InitMethod.php │ ├── InjectorMethod.php │ └── SingletonMethod.php │ ├── BootloadManager │ ├── AbstractBootloadManager.php │ ├── AttributeResolver.php │ ├── AttributeResolver │ │ ├── AbstractResolver.php │ │ ├── BindMethodResolver.php │ │ ├── InjectorMethodResolver.php │ │ └── SingletonMethodResolver.php │ ├── AttributeResolverInterface.php │ ├── AttributeResolverRegistryInterface.php │ ├── BootloadManager.php │ ├── Checker │ │ ├── BootloaderChecker.php │ │ ├── BootloaderCheckerInterface.php │ │ ├── CanBootedChecker.php │ │ ├── CheckerRegistry.php │ │ ├── CheckerRegistryInterface.php │ │ ├── ClassExistsChecker.php │ │ └── ConfigChecker.php │ ├── ClassesRegistry.php │ ├── DefaultInvokerStrategy.php │ ├── Initializer.php │ ├── InitializerInterface.php │ ├── InvokerStrategyInterface.php │ ├── Methods.php │ └── StrategyBasedBootloadManager.php │ ├── BootloadManagerInterface.php │ ├── Bootloader │ ├── Bootloader.php │ ├── BootloaderInterface.php │ ├── BootloaderRegistry.php │ ├── BootloaderRegistryInterface.php │ ├── ConfigurationBootloader.php │ ├── CoreBootloader.php │ └── DependedInterface.php │ ├── Directories.php │ ├── DirectoriesInterface.php │ ├── DispatcherInterface.php │ ├── Environment.php │ ├── Environment │ ├── AppEnvironment.php │ └── DebugMode.php │ ├── EnvironmentInterface.php │ ├── Event │ ├── Bootstrapped.php │ ├── DispatcherFound.php │ ├── DispatcherNotFound.php │ ├── Finalizing.php │ └── Serving.php │ ├── Exception │ ├── BootException.php │ ├── BootloaderAlreadyBootedException.php │ ├── ClassNotFoundException.php │ ├── DirectoryException.php │ └── EnvironmentException.php │ ├── Finalizer.php │ ├── FinalizerInterface.php │ ├── Injector │ ├── EnumInjector.php │ ├── InjectableEnumInterface.php │ └── ProvideFrom.php │ ├── KernelInterface.php │ ├── Memory.php │ ├── MemoryInterface.php │ ├── NullMemory.php │ └── helpers.php ├── Bridge ├── Dotenv │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ └── Bootloader │ │ └── DotenvBootloader.php ├── Monolog │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ │ ├── Bootloader │ │ └── MonologBootloader.php │ │ ├── Config │ │ └── MonologConfig.php │ │ ├── EventHandler.php │ │ ├── Exception │ │ └── ConfigException.php │ │ └── LogFactory.php └── Stempler │ ├── LICENSE │ ├── README.md │ ├── composer.json │ └── src │ ├── Bootloader │ ├── PrettyPrintBootloader.php │ └── StemplerBootloader.php │ ├── Config │ └── StemplerConfig.php │ ├── Directive │ ├── ContainerDirective.php │ └── RouteDirective.php │ ├── Exception │ └── ConfigException.php │ ├── ExceptionMapper.php │ ├── Processor │ └── NullLocaleProcessor.php │ ├── StemplerCache.php │ ├── StemplerEngine.php │ ├── StemplerLoader.php │ ├── StemplerView.php │ └── Visitor │ ├── FlattenNodes.php │ └── FormatHTML.php ├── Broadcasting ├── LICENSE ├── README.md ├── composer.json └── src │ ├── AuthorizationStatus.php │ ├── Bootloader │ ├── BroadcastingBootloader.php │ └── WebsocketsBootloader.php │ ├── BroadcastInterface.php │ ├── BroadcastManager.php │ ├── BroadcastManagerInterface.php │ ├── Config │ └── BroadcastConfig.php │ ├── Driver │ ├── AbstractBroadcast.php │ ├── LogBroadcast.php │ └── NullBroadcast.php │ ├── Event │ └── Authorized.php │ ├── Exception │ ├── BroadcastException.php │ └── InvalidArgumentException.php │ ├── GuardInterface.php │ ├── Middleware │ └── AuthorizationMiddleware.php │ ├── TopicRegistry.php │ └── TopicRegistryInterface.php ├── Cache ├── LICENSE ├── README.md ├── composer.json └── src │ ├── Bootloader │ └── CacheBootloader.php │ ├── CacheManager.php │ ├── CacheRepository.php │ ├── CacheStorageProviderInterface.php │ ├── CacheStorageRegistryInterface.php │ ├── Config │ └── CacheConfig.php │ ├── Core │ └── CacheInjector.php │ ├── Event │ ├── CacheEvent.php │ ├── CacheHit.php │ ├── CacheMissed.php │ ├── CacheRetrieving.php │ ├── KeyDeleteFailed.php │ ├── KeyDeleted.php │ ├── KeyDeleting.php │ ├── KeyWriteFailed.php │ ├── KeyWriting.php │ └── KeyWritten.php │ ├── Exception │ ├── CacheException.php │ ├── InvalidArgumentException.php │ └── StorageException.php │ └── Storage │ ├── ArrayStorage.php │ ├── FileStorage.php │ └── InteractsWithTime.php ├── Config ├── LICENSE ├── README.md ├── composer.json └── src │ ├── ConfigManager.php │ ├── ConfiguratorInterface.php │ ├── Exception │ ├── ConfigDeliveredException.php │ ├── DotNotFoundException.php │ ├── InvalidArgumentException.php │ ├── LoaderException.php │ └── PatchException.php │ ├── Loader │ ├── DirectoryLoader.php │ ├── FileLoaderInterface.php │ ├── JsonLoader.php │ └── PhpLoader.php │ ├── LoaderInterface.php │ ├── Patch │ ├── Append.php │ ├── Delete.php │ ├── Group.php │ ├── Prepend.php │ ├── Set.php │ └── Traits │ │ └── DotTrait.php │ └── PatchInterface.php ├── Console ├── LICENSE ├── README.md ├── composer.json └── src │ ├── Attribute │ ├── Argument.php │ ├── AsCommand.php │ ├── Option.php │ └── Question.php │ ├── Bootloader │ └── ConsoleBootloader.php │ ├── Command.php │ ├── Command │ ├── ConfigureCommand.php │ ├── SequenceCommand.php │ └── UpdateCommand.php │ ├── CommandCore.php │ ├── CommandCoreFactory.php │ ├── CommandLocatorListener.php │ ├── CommandOutput.php │ ├── Config │ └── ConsoleConfig.php │ ├── Configurator │ ├── Attribute │ │ └── Parser.php │ ├── AttributeBasedConfigurator.php │ ├── CommandDefinition.php │ ├── Configurator.php │ ├── ConfiguratorInterface.php │ ├── ConstantBasedConfigurator.php │ ├── Signature │ │ └── Parser.php │ └── SignatureBasedConfigurator.php │ ├── Console.php │ ├── Event │ ├── CommandFinished.php │ └── CommandStarting.php │ ├── Exception │ ├── CommandException.php │ ├── ConfigException.php │ ├── ConfiguratorException.php │ ├── ConsoleException.php │ └── LocatorException.php │ ├── InputProxy.php │ ├── Interceptor │ └── AttributeInterceptor.php │ ├── LocatorInterface.php │ ├── PromptArguments.php │ ├── Sequence │ ├── AbstractSequence.php │ ├── CallableSequence.php │ └── CommandSequence.php │ ├── SequenceInterface.php │ ├── StaticLocator.php │ └── Traits │ ├── HelpersTrait.php │ └── LazyTrait.php ├── Cookies ├── LICENSE ├── README.md ├── composer.json └── src │ ├── Config │ └── CookiesConfig.php │ ├── Cookie.php │ ├── Cookie │ └── SameSite.php │ ├── CookieQueue.php │ ├── Exception │ └── CookieException.php │ └── Middleware │ └── CookiesMiddleware.php ├── Core ├── LICENSE ├── README.md ├── composer.json └── src │ ├── Attribute │ ├── Finalize.php │ ├── Plugin.php │ ├── Proxy.php │ ├── Scope.php │ └── Singleton.php │ ├── BinderInterface.php │ ├── Config.php │ ├── Config │ ├── Alias.php │ ├── Autowire.php │ ├── Binding.php │ ├── DeferredFactory.php │ ├── DeprecationProxy.php │ ├── Factory.php │ ├── Inflector.php │ ├── Injectable.php │ ├── Proxy.php │ ├── Scalar.php │ ├── Shared.php │ └── WeakReference.php │ ├── ConfigsInterface.php │ ├── Container.php │ ├── Container │ ├── Autowire.php │ ├── InjectableInterface.php │ ├── InjectorInterface.php │ └── SingletonInterface.php │ ├── ContainerScope.php │ ├── Exception │ ├── Binder │ │ └── SingletonOverloadException.php │ ├── ConfigException.php │ ├── ConfiguratorException.php │ ├── Container │ │ ├── ArgumentException.php │ │ ├── AutowireException.php │ │ ├── ContainerException.php │ │ ├── InjectionException.php │ │ ├── NotCallableException.php │ │ ├── NotFoundException.php │ │ ├── RecursiveProxyException.php │ │ └── TracedContainerException.php │ ├── LogicException.php │ ├── Resolver │ │ ├── ArgumentResolvingException.php │ │ ├── InvalidArgumentException.php │ │ ├── MissingRequiredArgumentException.php │ │ ├── PositionalArgumentException.php │ │ ├── ResolvingException.php │ │ ├── UnknownParameterException.php │ │ ├── UnsupportedTypeException.php │ │ ├── ValidationException.php │ │ └── WrongTypeException.php │ ├── RuntimeException.php │ ├── Scope │ │ ├── BadScopeException.php │ │ ├── FinalizersException.php │ │ ├── NamedScopeDuplicationException.php │ │ ├── ScopeContainerLeakedException.php │ │ └── ScopeException.php │ ├── ScopeException.php │ ├── Shared │ │ └── InvalidContainerScopeException.php │ └── Traits │ │ └── ClosureRendererTrait.php │ ├── FactoryInterface.php │ ├── InjectableConfig.php │ ├── Internal │ ├── Actor.php │ ├── Binder.php │ ├── Common │ │ ├── DestructorTrait.php │ │ └── Registry.php │ ├── Config │ │ ├── StateBinder.php │ │ └── StateStorage.php │ ├── Container.php │ ├── Factory.php │ ├── Factory │ │ └── Ctx.php │ ├── Introspector.php │ ├── Introspector │ │ └── Accessor.php │ ├── Invoker.php │ ├── Proxy.php │ ├── Proxy │ │ ├── MagicCallTrait.php │ │ ├── ProxyClassRenderer.php │ │ ├── ProxyTrait.php │ │ ├── Resolver.php │ │ └── RetryContext.php │ ├── Resolver.php │ ├── Resolver │ │ └── ResolvingState.php │ ├── Scope.php │ ├── State.php │ ├── Tracer.php │ └── Tracer │ │ └── Trace.php │ ├── InvokerInterface.php │ ├── Options.php │ ├── ResolverInterface.php │ ├── Scope.php │ ├── ScopeInterface.php │ └── Traits │ └── Config │ └── AliasTrait.php ├── Csrf ├── LICENSE ├── README.md ├── composer.json └── src │ ├── Config │ └── CsrfConfig.php │ └── Middleware │ ├── CsrfFirewall.php │ ├── CsrfMiddleware.php │ └── StrictCsrfFirewall.php ├── Debug ├── LICENSE ├── README.md ├── composer.json └── src │ ├── Exception │ └── StateException.php │ ├── State.php │ ├── StateConsumerInterface.php │ └── StateInterface.php ├── Distribution ├── LICENSE ├── README.md ├── composer.json └── src │ ├── Bootloader │ └── DistributionBootloader.php │ ├── Config │ └── DistributionConfig.php │ ├── DistributionInterface.php │ ├── ExpirationAwareResolverInterface.php │ ├── Internal │ ├── AmazonUriFactory.php │ ├── DateTimeFactory.php │ ├── DateTimeFactoryInterface.php │ ├── DateTimeIntervalFactory.php │ └── DateTimeIntervalFactoryInterface.php │ ├── Manager.php │ ├── MutableDistributionInterface.php │ ├── Resolver │ ├── CloudFrontResolver.php │ ├── ExpirationAwareResolver.php │ ├── S3SignedResolver.php │ ├── StaticResolver.php │ └── UriResolver.php │ └── UriResolverInterface.php ├── Encrypter ├── LICENSE ├── README.md ├── composer.json └── src │ ├── Config │ └── EncrypterConfig.php │ ├── Encrypter.php │ ├── EncrypterFactory.php │ ├── EncrypterInterface.php │ ├── EncryptionInterface.php │ └── Exception │ ├── DecryptException.php │ ├── EncryptException.php │ └── EncrypterException.php ├── Events ├── LICENSE ├── README.md ├── composer.json └── src │ ├── Attribute │ └── Listener.php │ ├── AutowireListenerFactory.php │ ├── Bootloader │ └── EventsBootloader.php │ ├── Config │ ├── EventListener.php │ └── EventsConfig.php │ ├── EventDispatcher.php │ ├── EventDispatcherAwareInterface.php │ ├── Exception │ └── InvalidArgumentException.php │ ├── Interceptor │ └── Core.php │ ├── ListenerFactoryInterface.php │ ├── ListenerProcessorRegistry.php │ ├── ListenerRegistryInterface.php │ └── Processor │ ├── AbstractProcessor.php │ ├── AttributeProcessor.php │ ├── ConfigProcessor.php │ └── ProcessorInterface.php ├── Exceptions ├── LICENSE ├── README.md ├── composer.json └── src │ ├── Attribute │ └── NonReportable.php │ ├── Exception │ └── FatalException.php │ ├── ExceptionHandler.php │ ├── ExceptionHandlerInterface.php │ ├── ExceptionRendererInterface.php │ ├── ExceptionReporterInterface.php │ ├── Renderer │ ├── AbstractRenderer.php │ ├── ConsoleRenderer.php │ ├── Highlighter.php │ ├── JsonRenderer.php │ └── PlainRenderer.php │ ├── Reporter │ └── LoggerReporter.php │ ├── Style │ ├── ConsoleStyle.php │ └── PlainStyle.php │ ├── StyleInterface.php │ └── Verbosity.php ├── Files ├── LICENSE ├── README.md ├── composer.json └── src │ ├── Exception │ ├── FileNotFoundException.php │ ├── FilesException.php │ └── WriteErrorException.php │ ├── Files.php │ └── FilesInterface.php ├── Filters ├── LICENSE ├── README.md ├── composer.json └── src │ ├── Attribute │ ├── CastingErrorMessage.php │ ├── Input │ │ ├── AbstractInput.php │ │ ├── Attribute.php │ │ ├── BearerToken.php │ │ ├── Cookie.php │ │ ├── Data.php │ │ ├── File.php │ │ ├── Header.php │ │ ├── Input.php │ │ ├── IsAjax.php │ │ ├── IsJsonExpected.php │ │ ├── IsSecure.php │ │ ├── Method.php │ │ ├── Path.php │ │ ├── Post.php │ │ ├── Query.php │ │ ├── RemoteAddress.php │ │ ├── Route.php │ │ ├── Server.php │ │ └── Uri.php │ ├── NestedArray.php │ ├── NestedFilter.php │ └── Setter.php │ ├── Config │ └── FiltersConfig.php │ ├── ErrorMapper.php │ ├── ErrorsRendererInterface.php │ ├── Exception │ ├── AuthorizationException.php │ ├── DotNotFoundException.php │ ├── FilterException.php │ ├── InputException.php │ ├── SchemaException.php │ ├── SetterException.php │ └── ValidationException.php │ ├── InputInterface.php │ └── Model │ ├── Filter.php │ ├── FilterBag.php │ ├── FilterDefinitionInterface.php │ ├── FilterInterface.php │ ├── FilterProvider.php │ ├── FilterProviderInterface.php │ ├── HasFilterDefinition.php │ ├── Interceptor │ ├── Core.php │ ├── PopulateDataFromEntityInterceptor.php │ └── ValidateFilterInterceptor.php │ ├── Mapper │ ├── CasterInterface.php │ ├── CasterRegistry.php │ ├── CasterRegistryInterface.php │ ├── DefaultCaster.php │ ├── EnumCaster.php │ ├── Mapper.php │ └── UuidCaster.php │ ├── Schema │ ├── AttributeMapper.php │ ├── Builder.php │ └── InputMapper.php │ └── ShouldBeValidated.php ├── Framework ├── Attribute │ └── DispatcherScope.php ├── Auth │ ├── AuthScope.php │ ├── Config │ │ └── AuthConfig.php │ ├── Exception │ │ └── InvalidArgumentException.php │ ├── Session │ │ ├── Token.php │ │ └── TokenStorage.php │ └── TokenStorageScope.php ├── Bootloader │ ├── Attributes │ │ ├── AttributesBootloader.php │ │ └── AttributesConfig.php │ ├── Auth │ │ ├── AuthBootloader.php │ │ ├── HttpAuthBootloader.php │ │ ├── SecurityActorBootloader.php │ │ └── TokenStorage │ │ │ └── SessionTokensBootloader.php │ ├── CommandBootloader.php │ ├── Debug │ │ ├── HttpCollectorBootloader.php │ │ └── LogCollectorBootloader.php │ ├── DebugBootloader.php │ ├── DomainBootloader.php │ ├── Http │ │ ├── CookiesBootloader.php │ │ ├── CsrfBootloader.php │ │ ├── ErrorHandlerBootloader.php │ │ ├── Exception │ │ │ ├── ContextualObjectNotFoundException.php │ │ │ └── InvalidRequestScopeException.php │ │ ├── HttpBootloader.php │ │ ├── JsonPayloadConfig.php │ │ ├── JsonPayloadsBootloader.php │ │ ├── PaginationBootloader.php │ │ ├── RouterBootloader.php │ │ ├── RoutesBootloader.php │ │ └── SessionBootloader.php │ ├── I18nBootloader.php │ ├── Security │ │ ├── EncrypterBootloader.php │ │ ├── FiltersBootloader.php │ │ └── GuardBootloader.php │ ├── SnapshotsBootloader.php │ ├── StorageSnapshotsBootloader.php │ └── Views │ │ └── TranslatedCacheBootloader.php ├── Command │ ├── CleanCommand.php │ ├── Encrypter │ │ └── KeyCommand.php │ ├── PublishCommand.php │ ├── Router │ │ └── ListCommand.php │ ├── Tokenizer │ │ ├── InfoCommand.php │ │ └── ValidateCommand.php │ ├── Translator │ │ ├── ExportCommand.php │ │ ├── IndexCommand.php │ │ └── ResetCommand.php │ └── Views │ │ ├── CompileCommand.php │ │ └── ResetCommand.php ├── Console │ ├── CommandLocator.php │ ├── Confirmation │ │ └── ApplicationInProduction.php │ ├── ConsoleDispatcher.php │ ├── Logger │ │ └── DebugListener.php │ └── Sequence │ │ └── RuntimeDirectory.php ├── Cookies │ └── CookieManager.php ├── Debug │ ├── Config │ │ └── DebugConfig.php │ ├── StateCollector │ │ ├── EnvironmentCollector.php │ │ ├── HttpCollector.php │ │ └── LogCollector.php │ └── StateCollectorInterface.php ├── Domain │ ├── Annotation │ │ ├── GuardNamespace.php │ │ ├── Guarded.php │ │ └── Pipeline.php │ ├── GuardInterceptor.php │ ├── GuardPermissionsProvider.php │ ├── Permission.php │ ├── PermissionsProviderInterface.php │ └── PipelineInterceptor.php ├── Exceptions │ └── Reporter │ │ ├── FileReporter.php │ │ └── StorageReporter.php ├── Filter │ ├── InputScope.php │ ├── JsonErrorsRenderer.php │ └── ValidationHandlerMiddleware.php ├── Framework │ ├── Kernel.php │ └── Spiral.php ├── Http │ └── PaginationFactory.php ├── Module │ ├── Exception │ │ └── PublishException.php │ ├── Publisher.php │ └── PublisherInterface.php ├── Security │ └── GuardScope.php ├── Session │ ├── Middleware │ │ └── SessionMiddleware.php │ ├── SectionScope.php │ └── SessionScope.php ├── Snapshots │ ├── FileSnapshooter.php │ └── StorageSnapshooter.php ├── Translator │ ├── MemoryCache.php │ └── Views │ │ ├── LocaleDependency.php │ │ └── LocaleProcessor.php └── helpers.php ├── Hmvc ├── LICENSE ├── README.md ├── composer.json └── src │ ├── AbstractCore.php │ ├── CompatiblePipelineBuilder.php │ ├── Core.php │ ├── CoreInterceptorInterface.php │ ├── CoreInterface.php │ ├── Event │ └── InterceptorCalling.php │ ├── Exception │ ├── ControllerException.php │ ├── CoreException.php │ └── InterceptorException.php │ ├── InterceptableCore.php │ └── InterceptorPipeline.php ├── Http ├── LICENSE ├── README.md ├── composer.json └── src │ ├── CallableHandler.php │ ├── Config │ └── HttpConfig.php │ ├── CurrentRequest.php │ ├── ErrorHandler │ ├── PlainRenderer.php │ └── RendererInterface.php │ ├── Event │ ├── MiddlewareProcessing.php │ ├── RequestHandled.php │ └── RequestReceived.php │ ├── Exception │ ├── ClientException.php │ ├── ClientException │ │ ├── BadRequestException.php │ │ ├── ForbiddenException.php │ │ ├── NotFoundException.php │ │ ├── ServerErrorException.php │ │ └── UnauthorizedException.php │ ├── DotNotFoundException.php │ ├── HttpException.php │ ├── InputException.php │ ├── PipelineException.php │ └── ResponseException.php │ ├── Header │ ├── AcceptHeader.php │ └── AcceptHeaderItem.php │ ├── Http.php │ ├── LazyPipeline.php │ ├── Middleware │ ├── ErrorHandlerMiddleware.php │ ├── ErrorHandlerMiddleware │ │ ├── EnvSuppressErrors.php │ │ └── SuppressErrorsInterface.php │ └── JsonPayloadMiddleware.php │ ├── Pipeline.php │ ├── Request │ ├── FilesBag.php │ ├── HeadersBag.php │ ├── InputBag.php │ ├── InputManager.php │ └── ServerBag.php │ ├── ResponseWrapper.php │ ├── Stream │ └── GeneratorStream.php │ └── Traits │ ├── JsonTrait.php │ └── MiddlewareTrait.php ├── Interceptors ├── LICENSE ├── README.md ├── composer.json └── src │ ├── Context │ ├── AttributedInterface.php │ ├── AttributedTrait.php │ ├── CallContext.php │ ├── CallContextInterface.php │ ├── Target.php │ └── TargetInterface.php │ ├── Event │ └── InterceptorCalling.php │ ├── Exception │ ├── InterceptorException.php │ └── TargetCallException.php │ ├── Handler │ ├── AutowireHandler.php │ ├── CallableHandler.php │ └── InterceptorPipeline.php │ ├── HandlerInterface.php │ ├── InterceptorInterface.php │ ├── Internal │ └── ActionResolver.php │ ├── PipelineBuilder.php │ └── PipelineBuilderInterface.php ├── Logger ├── LICENSE ├── README.md ├── composer.json └── src │ ├── Attribute │ └── LoggerChannel.php │ ├── Bootloader │ └── LoggerBootloader.php │ ├── Event │ └── LogEvent.php │ ├── ListenerRegistry.php │ ├── ListenerRegistryInterface.php │ ├── LogFactory.php │ ├── LoggerInjector.php │ ├── LogsInterface.php │ ├── NullLogger.php │ └── Traits │ └── LoggerTrait.php ├── Mailer ├── LICENSE ├── README.md ├── composer.json └── src │ ├── Exception │ └── MailerException.php │ ├── MailerInterface.php │ ├── Message.php │ └── MessageInterface.php ├── Models ├── LICENSE ├── README.md ├── composer.json └── src │ ├── AbstractEntity.php │ ├── DataEntity.php │ ├── EntityInterface.php │ ├── Exception │ ├── AccessException.php │ ├── AccessExceptionInterface.php │ ├── EntityException.php │ ├── EntityExceptionInterface.php │ └── ReflectionException.php │ ├── ModelSchema.php │ ├── Reflection │ └── ReflectionEntity.php │ ├── SchematicEntity.php │ └── ValueInterface.php ├── Pagination ├── LICENSE ├── README.md ├── composer.json └── src │ ├── Exception │ └── PaginationException.php │ ├── PaginableInterface.php │ ├── PaginationProviderInterface.php │ ├── Paginator.php │ ├── PaginatorInterface.php │ └── Traits │ └── LimitsTrait.php ├── Prototype ├── LICENSE ├── README.md ├── composer.json └── src │ ├── Annotation │ ├── Line.php │ ├── Parser.php │ └── Prototyped.php │ ├── Bootloader │ └── PrototypeBootloader.php │ ├── ClassNode.php │ ├── ClassNode │ ├── ClassStmt.php │ ├── ConflictResolver │ │ ├── AbstractEntity.php │ │ ├── NameEntity.php │ │ ├── Names.php │ │ ├── NamespaceEntity.php │ │ ├── Namespaces.php │ │ └── Sequences.php │ ├── ConstructorParam.php │ └── Type.php │ ├── Command │ ├── AbstractCommand.php │ ├── DumpCommand.php │ ├── InjectCommand.php │ ├── ListCommand.php │ └── UsageCommand.php │ ├── Config │ └── PrototypeConfig.php │ ├── Dependency.php │ ├── Exception │ ├── ClassNotDeclaredException.php │ └── PrototypeException.php │ ├── Injector.php │ ├── NodeExtractor.php │ ├── NodeVisitors │ ├── AddUse.php │ ├── ClassNode │ │ ├── DeclareClass.php │ │ ├── LocateStatements.php │ │ └── LocateVariables.php │ ├── DefineConstructor.php │ ├── LocateProperties.php │ ├── RemoveTrait.php │ ├── RemoveUse.php │ └── UpdateConstructor.php │ ├── PropertyExtractor.php │ ├── PrototypeLocator.php │ ├── PrototypeLocatorListener.php │ ├── PrototypeRegistry.php │ ├── Traits │ └── PrototypeTrait.php │ └── Utils.php ├── Queue ├── .gitattributes ├── .github │ ├── FUNDING.yml │ └── workflows │ │ ├── phpunit.yml │ │ └── psalm.yml ├── .gitignore ├── LICENSE ├── README.md ├── composer.json └── src │ ├── Attribute │ ├── JobHandler.php │ ├── Queueable.php │ ├── RetryPolicy.php │ └── Serializer.php │ ├── Bootloader │ └── QueueBootloader.php │ ├── Config │ └── QueueConfig.php │ ├── ContainerRegistry.php │ ├── Core │ └── QueueInjector.php │ ├── Driver │ ├── NullDriver.php │ └── SyncDriver.php │ ├── Event │ ├── JobProcessed.php │ └── JobProcessing.php │ ├── Exception │ ├── FailException.php │ ├── InvalidArgumentException.php │ ├── JobException.php │ ├── NotSupportedDriverException.php │ ├── QueueException.php │ ├── RetryException.php │ ├── RetryableExceptionInterface.php │ ├── SerializationException.php │ └── StateException.php │ ├── ExtendedOptionsInterface.php │ ├── Failed │ ├── FailedJobHandlerInterface.php │ └── LogFailedJobHandler.php │ ├── HandlerInterface.php │ ├── HandlerRegistryInterface.php │ ├── Interceptor │ ├── Consume │ │ ├── Core.php │ │ ├── ErrorHandlerInterceptor.php │ │ ├── Handler.php │ │ └── RetryPolicyInterceptor.php │ └── Push │ │ └── Core.php │ ├── Job │ ├── CallableJob.php │ └── ObjectJob.php │ ├── JobHandler.php │ ├── JobHandlerLocatorListener.php │ ├── Options.php │ ├── OptionsInterface.php │ ├── Queue.php │ ├── QueueConnectionProviderInterface.php │ ├── QueueInterface.php │ ├── QueueManager.php │ ├── QueueRegistry.php │ ├── QueueTrait.php │ ├── QueueableDetector.php │ ├── QueueableInterface.php │ ├── RetryPolicy.php │ ├── RetryPolicyInterface.php │ ├── SerializerLocatorListener.php │ ├── SerializerRegistryInterface.php │ ├── Task.php │ └── TaskInterface.php ├── Reactor ├── LICENSE ├── README.md ├── composer.json └── src │ ├── AbstractDeclaration.php │ ├── AggregableInterface.php │ ├── Aggregator.php │ ├── Aggregator │ ├── Classes.php │ ├── Constants.php │ ├── Elements.php │ ├── EnumCases.php │ ├── Enums.php │ ├── Functions.php │ ├── Interfaces.php │ ├── Methods.php │ ├── Namespaces.php │ ├── Parameters.php │ ├── Properties.php │ ├── TraitUses.php │ └── Traits.php │ ├── ClassDeclaration.php │ ├── DeclarationInterface.php │ ├── EnumDeclaration.php │ ├── Exception │ └── ReactorException.php │ ├── FileDeclaration.php │ ├── FunctionDeclaration.php │ ├── InterfaceDeclaration.php │ ├── NamedInterface.php │ ├── Partial │ ├── Attribute.php │ ├── Constant.php │ ├── EnumCase.php │ ├── Method.php │ ├── Parameter.php │ ├── PhpNamespace.php │ ├── PromotedParameter.php │ ├── Property.php │ ├── TraitUse.php │ └── Visibility.php │ ├── Printer.php │ ├── TraitDeclaration.php │ ├── Traits │ ├── AttributeAware.php │ ├── ClassAware.php │ ├── CommentAware.php │ ├── ConstantsAware.php │ ├── EnumAware.php │ ├── FunctionLike.php │ ├── InterfaceAware.php │ ├── MethodsAware.php │ ├── NameAware.php │ ├── PropertiesAware.php │ ├── TraitAware.php │ ├── TraitsAware.php │ └── VisibilityAware.php │ └── Writer.php ├── Router ├── LICENSE ├── README.md ├── composer.json └── src │ ├── AbstractRoute.php │ ├── Autofill.php │ ├── ContainerizedInterface.php │ ├── CoreHandler.php │ ├── Event │ ├── RouteMatched.php │ ├── RouteNotFound.php │ └── Routing.php │ ├── Exception │ ├── ConstrainException.php │ ├── HandlerException.php │ ├── LoaderLoadException.php │ ├── RouteException.php │ ├── RouteNotFoundException.php │ ├── RouterException.php │ ├── TargetException.php │ ├── UndefinedRouteException.php │ └── UriHandlerException.php │ ├── GroupRegistry.php │ ├── Loader │ ├── Configurator │ │ ├── ImportConfigurator.php │ │ ├── RouteConfigurator.php │ │ └── RoutingConfigurator.php │ ├── DelegatingLoader.php │ ├── LoaderInterface.php │ ├── LoaderRegistry.php │ ├── LoaderRegistryInterface.php │ └── PhpFileLoader.php │ ├── PipelineFactory.php │ ├── Registry │ ├── DefaultPatternRegistry.php │ └── RoutePatternRegistryInterface.php │ ├── Route.php │ ├── RouteCollection.php │ ├── RouteGroup.php │ ├── RouteInterface.php │ ├── Router.php │ ├── RouterInterface.php │ ├── Target │ ├── AbstractTarget.php │ ├── Action.php │ ├── Controller.php │ ├── Group.php │ └── Namespaced.php │ ├── TargetInterface.php │ ├── Traits │ ├── ContainerTrait.php │ ├── DefaultsTrait.php │ ├── PipelineTrait.php │ └── VerbsTrait.php │ └── UriHandler.php ├── Scaffolder ├── .scrutinizer.yml ├── LICENSE ├── README.md ├── composer.json └── src │ ├── Bootloader │ └── ScaffolderBootloader.php │ ├── Command │ ├── AbstractCommand.php │ ├── BootloaderCommand.php │ ├── CommandCommand.php │ ├── ConfigCommand.php │ ├── ControllerCommand.php │ ├── FilterCommand.php │ ├── InfoCommand.php │ ├── JobHandlerCommand.php │ └── MiddlewareCommand.php │ ├── Config │ └── ScaffolderConfig.php │ ├── Declaration │ ├── AbstractDeclaration.php │ ├── BootloaderDeclaration.php │ ├── CommandDeclaration.php │ ├── ConfigDeclaration.php │ ├── ConfigDeclaration │ │ ├── Defaults.php │ │ ├── TypeAnnotations.php │ │ └── TypeHints.php │ ├── ControllerDeclaration.php │ ├── DeclarationInterface.php │ ├── FilterDeclaration.php │ ├── HasInstructions.php │ ├── JobHandlerDeclaration.php │ └── MiddlewareDeclaration.php │ ├── Exception │ └── ScaffolderException.php │ └── helpers.php ├── Security ├── LICENSE ├── README.md ├── composer.json └── src │ ├── Actor │ ├── Actor.php │ ├── Guest.php │ └── NullActor.php │ ├── ActorInterface.php │ ├── Command │ └── RolePermissionsCommand.php │ ├── Exception │ ├── GuardException.php │ ├── PermissionException.php │ ├── RoleException.php │ ├── RuleException.php │ └── SecurityException.php │ ├── Guard.php │ ├── GuardInterface.php │ ├── Matcher.php │ ├── PermissionManager.php │ ├── PermissionsInterface.php │ ├── Rule.php │ ├── Rule │ ├── AllowRule.php │ ├── CallableRule.php │ ├── CompositeRule.php │ └── ForbidRule.php │ ├── RuleInterface.php │ ├── RuleManager.php │ ├── RulesInterface.php │ └── Traits │ └── GuardedTrait.php ├── SendIt ├── LICENSE ├── README.md ├── composer.json ├── src │ ├── Bootloader │ │ ├── BuilderBootloader.php │ │ └── MailerBootloader.php │ ├── Config │ │ └── MailerConfig.php │ ├── Event │ │ ├── MessageNotSent.php │ │ ├── MessageSent.php │ │ ├── PostRender.php │ │ └── PreRender.php │ ├── Listener │ │ └── LoggerListener.php │ ├── MailJob.php │ ├── MailQueue.php │ ├── MessageSerializer.php │ ├── Renderer │ │ └── ViewRenderer.php │ ├── RendererInterface.php │ ├── TransportRegistryInterface.php │ ├── TransportResolver.php │ └── TransportResolverInterface.php └── views │ ├── builder.dark.php │ ├── bundle.dark.php │ └── partial │ ├── attach.dark.php │ ├── embed.dark.php │ └── image.dark.php ├── Serializer ├── LICENSE ├── README.md ├── composer.json └── src │ ├── Bootloader │ └── SerializerBootloader.php │ ├── Config │ └── SerializerConfig.php │ ├── Exception │ ├── InvalidArgumentException.php │ ├── SerializeException.php │ ├── SerializerException.php │ ├── SerializerExceptionInterface.php │ ├── SerializerNotFoundException.php │ └── UnserializeException.php │ ├── Serializer │ ├── CallbackSerializer.php │ ├── JsonSerializer.php │ ├── PhpSerializer.php │ └── ProtoSerializer.php │ ├── SerializerInterface.php │ ├── SerializerManager.php │ ├── SerializerRegistry.php │ └── SerializerRegistryInterface.php ├── Session ├── LICENSE ├── README.md ├── composer.json └── src │ ├── Config │ └── SessionConfig.php │ ├── Exception │ ├── MultipleSessionException.php │ └── SessionException.php │ ├── Handler │ ├── CacheHandler.php │ ├── FileHandler.php │ └── NullHandler.php │ ├── Session.php │ ├── SessionFactory.php │ ├── SessionFactoryInterface.php │ ├── SessionInterface.php │ ├── SessionSection.php │ └── SessionSectionInterface.php ├── Snapshots ├── LICENSE ├── README.md ├── composer.json └── src │ ├── FileSnapshot.php │ ├── Snapshot.php │ ├── SnapshotInterface.php │ ├── SnapshotterInterface.php │ └── StorageSnapshot.php ├── Stempler ├── LICENSE ├── README.md ├── composer.json └── src │ ├── Builder.php │ ├── Compiler.php │ ├── Compiler │ ├── Location.php │ ├── Renderer │ │ ├── CoreRenderer.php │ │ ├── DynamicRenderer.php │ │ ├── HTMLRenderer.php │ │ └── PHPRenderer.php │ ├── RendererInterface.php │ ├── Result.php │ └── SourceMap.php │ ├── Directive │ ├── AbstractDirective.php │ ├── ConditionalDirective.php │ ├── DirectiveGroup.php │ ├── DirectiveRendererInterface.php │ ├── JsonDirective.php │ ├── LoopDirective.php │ └── PHPDirective.php │ ├── Exception │ ├── CompilerException.php │ ├── ContextExceptionInterface.php │ ├── DirectiveException.php │ ├── ExtendsException.php │ ├── ImportException.php │ ├── LoaderException.php │ ├── ParserException.php │ ├── ScannerException.php │ ├── SyntaxException.php │ └── Traits │ │ └── ContextTrait.php │ ├── Lexer │ ├── Buffer.php │ ├── Byte.php │ ├── Grammar │ │ ├── Dynamic │ │ │ ├── BracesGrammar.php │ │ │ ├── DeclareGrammar.php │ │ │ └── DirectiveGrammar.php │ │ ├── DynamicGrammar.php │ │ ├── HTMLGrammar.php │ │ ├── InlineGrammar.php │ │ ├── PHPGrammar.php │ │ ├── RawGrammar.php │ │ └── Traits │ │ │ └── TokenTrait.php │ ├── GrammarInterface.php │ ├── Lexer.php │ ├── StreamInterface.php │ ├── StringStream.php │ └── Token.php │ ├── Loader │ ├── DirectoryLoader.php │ ├── LoaderInterface.php │ ├── Source.php │ └── StringLoader.php │ ├── Node │ ├── Aggregate.php │ ├── AttributedInterface.php │ ├── Block.php │ ├── Dynamic │ │ ├── Directive.php │ │ └── Output.php │ ├── HTML │ │ ├── Attr.php │ │ ├── Nil.php │ │ ├── Tag.php │ │ └── Verbatim.php │ ├── Hidden.php │ ├── Inline.php │ ├── Mixin.php │ ├── NodeInterface.php │ ├── PHP.php │ ├── Raw.php │ ├── Template.php │ └── Traits │ │ ├── AttributeTrait.php │ │ └── ContextTrait.php │ ├── Parser.php │ ├── Parser │ ├── Assembler.php │ ├── Context.php │ ├── Syntax │ │ ├── DynamicSyntax.php │ │ ├── HTMLSyntax.php │ │ ├── InlineSyntax.php │ │ ├── PHPSyntax.php │ │ ├── RawSyntax.php │ │ └── Traits │ │ │ └── MixinTrait.php │ └── SyntaxInterface.php │ ├── Transform │ ├── BlockClaims.php │ ├── BlockFetcher.php │ ├── Context │ │ ├── ImportContext.php │ │ └── StackContext.php │ ├── Finalizer │ │ ├── DynamicToPHP.php │ │ ├── IsolateBlocks.php │ │ ├── IsolatePHPBlocks.php │ │ ├── StackCollector.php │ │ └── TrimRaw.php │ ├── Import │ │ ├── Bundle.php │ │ ├── Directory.php │ │ ├── Element.php │ │ ├── ImportInterface.php │ │ ├── Inline.php │ │ └── TagHelper.php │ ├── Merge │ │ ├── ExtendsParent.php │ │ ├── Inject │ │ │ ├── InjectAttributes.php │ │ │ ├── InjectBlocks.php │ │ │ ├── InjectPHP.php │ │ │ └── PHPMixin.php │ │ └── ResolveImports.php │ ├── Merger.php │ ├── QuotedValue.php │ └── Visitor │ │ ├── DefineAttributes.php │ │ ├── DefineBlocks.php │ │ ├── DefineHidden.php │ │ └── DefineStacks.php │ ├── Traverser.php │ ├── VisitorContext.php │ ├── VisitorInterface.php │ └── helpers.php ├── Storage ├── LICENSE ├── README.md ├── composer.json └── src │ ├── Bootloader │ └── StorageBootloader.php │ ├── Bucket.php │ ├── Bucket │ ├── ReadableInterface.php │ ├── ReadableTrait.php │ ├── UriResolvableInterface.php │ ├── WritableInterface.php │ └── WritableTrait.php │ ├── BucketFactory.php │ ├── BucketFactoryInterface.php │ ├── BucketInterface.php │ ├── Config │ └── StorageConfig.php │ ├── Exception │ ├── FileOperationException.php │ ├── InvalidArgumentException.php │ └── StorageException.php │ ├── File.php │ ├── File │ ├── EntryInterface.php │ ├── ReadableInterface.php │ ├── ReadableTrait.php │ ├── UriResolvableInterface.php │ ├── UriResolvableTrait.php │ ├── WritableInterface.php │ └── WritableTrait.php │ ├── FileInterface.php │ ├── MutableStorageInterface.php │ ├── Storage.php │ ├── Storage │ ├── ReadableInterface.php │ ├── ReadableTrait.php │ ├── WritableInterface.php │ └── WritableTrait.php │ ├── StorageInterface.php │ └── Visibility.php ├── Streams ├── LICENSE ├── README.md ├── composer.json └── src │ ├── Exception │ └── WrapperException.php │ ├── StreamWrapper.php │ └── StreamableInterface.php ├── Telemetry ├── LICENSE ├── README.md ├── composer.json └── src │ ├── AbstractTracer.php │ ├── Bootloader │ └── TelemetryBootloader.php │ ├── Clock │ └── SystemClock.php │ ├── ClockInterface.php │ ├── Config │ └── TelemetryConfig.php │ ├── ConfigTracerFactoryProvider.php │ ├── Exception │ ├── InvalidArgumentException.php │ └── TracerException.php │ ├── LogTracer.php │ ├── LogTracerFactory.php │ ├── Monolog │ └── TelemetryProcessor.php │ ├── NullTracer.php │ ├── NullTracerFactory.php │ ├── Span.php │ ├── Span │ └── Status.php │ ├── SpanInterface.php │ ├── TraceKind.php │ ├── TracerFactoryInterface.php │ ├── TracerFactoryProviderInterface.php │ └── TracerInterface.php ├── Tokenizer ├── LICENSE ├── README.md ├── composer.json └── src │ ├── AbstractLocator.php │ ├── Attribute │ ├── AbstractTarget.php │ ├── TargetAttribute.php │ └── TargetClass.php │ ├── Bootloader │ ├── TokenizerBootloader.php │ └── TokenizerListenerBootloader.php │ ├── ClassLocator.php │ ├── ClassLocatorInjector.php │ ├── ClassesInterface.php │ ├── Config │ └── TokenizerConfig.php │ ├── EnumLocator.php │ ├── EnumLocatorInjector.php │ ├── EnumsInterface.php │ ├── Exception │ ├── LocatorException.php │ ├── ReflectionException.php │ └── TokenizerException.php │ ├── InterfaceLocator.php │ ├── InterfaceLocatorInjector.php │ ├── InterfacesInterface.php │ ├── InvocationLocator.php │ ├── InvocationLocatorInjector.php │ ├── InvocationsInterface.php │ ├── Listener │ ├── AbstractCachedLoader.php │ ├── CachedClassesLoader.php │ ├── CachedEnumsLoader.php │ ├── CachedInterfacesLoader.php │ ├── ClassLocatorByTarget.php │ ├── ClassesLoaderInterface.php │ ├── EnumLocatorByTarget.php │ ├── EnumsLoaderInterface.php │ ├── InterfaceLocatorByTarget.php │ ├── InterfacesLoaderInterface.php │ └── ListenerInvoker.php │ ├── Reflection │ ├── ReflectionArgument.php │ ├── ReflectionFile.php │ └── ReflectionInvocation.php │ ├── ScopedClassLocator.php │ ├── ScopedClassesInterface.php │ ├── ScopedEnumLocator.php │ ├── ScopedEnumsInterface.php │ ├── ScopedInterfaceLocator.php │ ├── ScopedInterfacesInterface.php │ ├── TokenizationListenerInterface.php │ ├── Tokenizer.php │ ├── TokenizerListenerRegistryInterface.php │ └── Traits │ └── TargetTrait.php ├── Translator ├── .gitattributes ├── .github │ ├── FUNDING.yml │ └── workflows │ │ ├── phpunit.yml │ │ └── psalm.yml ├── .gitignore ├── LICENSE ├── README.md ├── composer.json └── src │ ├── Catalogue.php │ ├── Catalogue │ ├── CacheInterface.php │ ├── CatalogueLoader.php │ ├── CatalogueManager.php │ ├── LoaderInterface.php │ ├── NullCache.php │ └── RuntimeLoader.php │ ├── CatalogueInterface.php │ ├── CatalogueManagerInterface.php │ ├── Config │ └── TranslatorConfig.php │ ├── Event │ └── LocaleUpdated.php │ ├── Exception │ ├── CatalogueException.php │ ├── LocaleException.php │ ├── PluralizationException.php │ ├── SourceException.php │ └── TranslatorException.php │ ├── Indexer.php │ ├── Matcher.php │ ├── Traits │ └── TranslatorTrait.php │ ├── Translator.php │ ├── TranslatorInterface.php │ └── helpers.php ├── Validation ├── LICENSE ├── README.md ├── composer.json └── src │ ├── Bootloader │ └── ValidationBootloader.php │ ├── Config │ └── ValidationConfig.php │ ├── Exception │ └── ValidationException.php │ ├── ValidationInterface.php │ ├── ValidationProvider.php │ ├── ValidationProviderInterface.php │ └── ValidatorInterface.php └── Views ├── LICENSE ├── README.md ├── composer.json └── src ├── Bootloader └── ViewsBootloader.php ├── Config └── ViewsConfig.php ├── Context └── ValueDependency.php ├── ContextGenerator.php ├── ContextInterface.php ├── DependencyInterface.php ├── Engine ├── AbstractEngine.php └── Native │ ├── NativeEngine.php │ └── NativeView.php ├── EngineInterface.php ├── Event └── ViewNotFound.php ├── Exception ├── CacheException.php ├── CompileException.php ├── ContextException.php ├── EngineException.php ├── LoaderException.php ├── PathException.php ├── RenderException.php └── ViewException.php ├── GlobalVariables.php ├── GlobalVariablesInterface.php ├── Loader ├── PathParser.php └── ViewPath.php ├── LoaderInterface.php ├── Processor └── ContextProcessor.php ├── ProcessorInterface.php ├── Traits └── ProcessorTrait.php ├── ViewCache.php ├── ViewContext.php ├── ViewInterface.php ├── ViewLoader.php ├── ViewManager.php ├── ViewSource.php └── ViewsInterface.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/composer.json -------------------------------------------------------------------------------- /psalm-baseline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/psalm-baseline.xml -------------------------------------------------------------------------------- /src/AnnotatedRoutes/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/AnnotatedRoutes/LICENSE -------------------------------------------------------------------------------- /src/AnnotatedRoutes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/AnnotatedRoutes/README.md -------------------------------------------------------------------------------- /src/AnnotatedRoutes/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/AnnotatedRoutes/composer.json -------------------------------------------------------------------------------- /src/AnnotatedRoutes/src/Annotation/Route.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/AnnotatedRoutes/src/Annotation/Route.php -------------------------------------------------------------------------------- /src/Auth/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Auth/LICENSE -------------------------------------------------------------------------------- /src/Auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Auth/README.md -------------------------------------------------------------------------------- /src/Auth/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Auth/composer.json -------------------------------------------------------------------------------- /src/Auth/src/ActorProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Auth/src/ActorProviderInterface.php -------------------------------------------------------------------------------- /src/Auth/src/AuthContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Auth/src/AuthContext.php -------------------------------------------------------------------------------- /src/Auth/src/AuthContextInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Auth/src/AuthContextInterface.php -------------------------------------------------------------------------------- /src/Auth/src/Event/Authenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Auth/src/Event/Authenticated.php -------------------------------------------------------------------------------- /src/Auth/src/Event/Logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Auth/src/Event/Logout.php -------------------------------------------------------------------------------- /src/Auth/src/Exception/AuthException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Auth/src/Exception/AuthException.php -------------------------------------------------------------------------------- /src/Auth/src/TokenInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Auth/src/TokenInterface.php -------------------------------------------------------------------------------- /src/Auth/src/TokenStorageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Auth/src/TokenStorageInterface.php -------------------------------------------------------------------------------- /src/Auth/src/TokenStorageProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Auth/src/TokenStorageProvider.php -------------------------------------------------------------------------------- /src/AuthHttp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/AuthHttp/LICENSE -------------------------------------------------------------------------------- /src/AuthHttp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/AuthHttp/README.md -------------------------------------------------------------------------------- /src/AuthHttp/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/AuthHttp/composer.json -------------------------------------------------------------------------------- /src/AuthHttp/src/HttpTransportInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/AuthHttp/src/HttpTransportInterface.php -------------------------------------------------------------------------------- /src/AuthHttp/src/TransportRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/AuthHttp/src/TransportRegistry.php -------------------------------------------------------------------------------- /src/Boot/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Boot/LICENSE -------------------------------------------------------------------------------- /src/Boot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Boot/README.md -------------------------------------------------------------------------------- /src/Boot/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Boot/composer.json -------------------------------------------------------------------------------- /src/Boot/src/AbstractKernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Boot/src/AbstractKernel.php -------------------------------------------------------------------------------- /src/Boot/src/Attribute/AbstractMethod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Boot/src/Attribute/AbstractMethod.php -------------------------------------------------------------------------------- /src/Boot/src/Attribute/BindAlias.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Boot/src/Attribute/BindAlias.php -------------------------------------------------------------------------------- /src/Boot/src/Attribute/BindMethod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Boot/src/Attribute/BindMethod.php -------------------------------------------------------------------------------- /src/Boot/src/Attribute/BindScope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Boot/src/Attribute/BindScope.php -------------------------------------------------------------------------------- /src/Boot/src/Attribute/BootMethod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Boot/src/Attribute/BootMethod.php -------------------------------------------------------------------------------- /src/Boot/src/Attribute/BootloadConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Boot/src/Attribute/BootloadConfig.php -------------------------------------------------------------------------------- /src/Boot/src/Attribute/InitMethod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Boot/src/Attribute/InitMethod.php -------------------------------------------------------------------------------- /src/Boot/src/Attribute/InjectorMethod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Boot/src/Attribute/InjectorMethod.php -------------------------------------------------------------------------------- /src/Boot/src/Attribute/SingletonMethod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Boot/src/Attribute/SingletonMethod.php -------------------------------------------------------------------------------- /src/Boot/src/BootloadManager/Initializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Boot/src/BootloadManager/Initializer.php -------------------------------------------------------------------------------- /src/Boot/src/BootloadManager/Methods.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Boot/src/BootloadManager/Methods.php -------------------------------------------------------------------------------- /src/Boot/src/BootloadManagerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Boot/src/BootloadManagerInterface.php -------------------------------------------------------------------------------- /src/Boot/src/Bootloader/Bootloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Boot/src/Bootloader/Bootloader.php -------------------------------------------------------------------------------- /src/Boot/src/Bootloader/CoreBootloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Boot/src/Bootloader/CoreBootloader.php -------------------------------------------------------------------------------- /src/Boot/src/Bootloader/DependedInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Boot/src/Bootloader/DependedInterface.php -------------------------------------------------------------------------------- /src/Boot/src/Directories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Boot/src/Directories.php -------------------------------------------------------------------------------- /src/Boot/src/DirectoriesInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Boot/src/DirectoriesInterface.php -------------------------------------------------------------------------------- /src/Boot/src/DispatcherInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Boot/src/DispatcherInterface.php -------------------------------------------------------------------------------- /src/Boot/src/Environment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Boot/src/Environment.php -------------------------------------------------------------------------------- /src/Boot/src/Environment/AppEnvironment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Boot/src/Environment/AppEnvironment.php -------------------------------------------------------------------------------- /src/Boot/src/Environment/DebugMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Boot/src/Environment/DebugMode.php -------------------------------------------------------------------------------- /src/Boot/src/EnvironmentInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Boot/src/EnvironmentInterface.php -------------------------------------------------------------------------------- /src/Boot/src/Event/Bootstrapped.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Boot/src/Event/Bootstrapped.php -------------------------------------------------------------------------------- /src/Boot/src/Event/DispatcherFound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Boot/src/Event/DispatcherFound.php -------------------------------------------------------------------------------- /src/Boot/src/Event/DispatcherNotFound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Boot/src/Event/DispatcherNotFound.php -------------------------------------------------------------------------------- /src/Boot/src/Event/Finalizing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Boot/src/Event/Finalizing.php -------------------------------------------------------------------------------- /src/Boot/src/Event/Serving.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Boot/src/Event/Serving.php -------------------------------------------------------------------------------- /src/Boot/src/Exception/BootException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Boot/src/Exception/BootException.php -------------------------------------------------------------------------------- /src/Boot/src/Exception/DirectoryException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Boot/src/Exception/DirectoryException.php -------------------------------------------------------------------------------- /src/Boot/src/Finalizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Boot/src/Finalizer.php -------------------------------------------------------------------------------- /src/Boot/src/FinalizerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Boot/src/FinalizerInterface.php -------------------------------------------------------------------------------- /src/Boot/src/Injector/EnumInjector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Boot/src/Injector/EnumInjector.php -------------------------------------------------------------------------------- /src/Boot/src/Injector/ProvideFrom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Boot/src/Injector/ProvideFrom.php -------------------------------------------------------------------------------- /src/Boot/src/KernelInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Boot/src/KernelInterface.php -------------------------------------------------------------------------------- /src/Boot/src/Memory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Boot/src/Memory.php -------------------------------------------------------------------------------- /src/Boot/src/MemoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Boot/src/MemoryInterface.php -------------------------------------------------------------------------------- /src/Boot/src/NullMemory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Boot/src/NullMemory.php -------------------------------------------------------------------------------- /src/Boot/src/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Boot/src/helpers.php -------------------------------------------------------------------------------- /src/Bridge/Dotenv/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Bridge/Dotenv/LICENSE -------------------------------------------------------------------------------- /src/Bridge/Dotenv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Bridge/Dotenv/README.md -------------------------------------------------------------------------------- /src/Bridge/Dotenv/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Bridge/Dotenv/composer.json -------------------------------------------------------------------------------- /src/Bridge/Monolog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Bridge/Monolog/LICENSE -------------------------------------------------------------------------------- /src/Bridge/Monolog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Bridge/Monolog/README.md -------------------------------------------------------------------------------- /src/Bridge/Monolog/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Bridge/Monolog/composer.json -------------------------------------------------------------------------------- /src/Bridge/Monolog/src/EventHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Bridge/Monolog/src/EventHandler.php -------------------------------------------------------------------------------- /src/Bridge/Monolog/src/LogFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Bridge/Monolog/src/LogFactory.php -------------------------------------------------------------------------------- /src/Bridge/Stempler/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Bridge/Stempler/LICENSE -------------------------------------------------------------------------------- /src/Bridge/Stempler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Bridge/Stempler/README.md -------------------------------------------------------------------------------- /src/Bridge/Stempler/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Bridge/Stempler/composer.json -------------------------------------------------------------------------------- /src/Bridge/Stempler/src/ExceptionMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Bridge/Stempler/src/ExceptionMapper.php -------------------------------------------------------------------------------- /src/Bridge/Stempler/src/StemplerCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Bridge/Stempler/src/StemplerCache.php -------------------------------------------------------------------------------- /src/Bridge/Stempler/src/StemplerEngine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Bridge/Stempler/src/StemplerEngine.php -------------------------------------------------------------------------------- /src/Bridge/Stempler/src/StemplerLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Bridge/Stempler/src/StemplerLoader.php -------------------------------------------------------------------------------- /src/Bridge/Stempler/src/StemplerView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Bridge/Stempler/src/StemplerView.php -------------------------------------------------------------------------------- /src/Broadcasting/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Broadcasting/LICENSE -------------------------------------------------------------------------------- /src/Broadcasting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Broadcasting/README.md -------------------------------------------------------------------------------- /src/Broadcasting/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Broadcasting/composer.json -------------------------------------------------------------------------------- /src/Broadcasting/src/AuthorizationStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Broadcasting/src/AuthorizationStatus.php -------------------------------------------------------------------------------- /src/Broadcasting/src/BroadcastInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Broadcasting/src/BroadcastInterface.php -------------------------------------------------------------------------------- /src/Broadcasting/src/BroadcastManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Broadcasting/src/BroadcastManager.php -------------------------------------------------------------------------------- /src/Broadcasting/src/Driver/LogBroadcast.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Broadcasting/src/Driver/LogBroadcast.php -------------------------------------------------------------------------------- /src/Broadcasting/src/Driver/NullBroadcast.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Broadcasting/src/Driver/NullBroadcast.php -------------------------------------------------------------------------------- /src/Broadcasting/src/Event/Authorized.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Broadcasting/src/Event/Authorized.php -------------------------------------------------------------------------------- /src/Broadcasting/src/GuardInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Broadcasting/src/GuardInterface.php -------------------------------------------------------------------------------- /src/Broadcasting/src/TopicRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Broadcasting/src/TopicRegistry.php -------------------------------------------------------------------------------- /src/Cache/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Cache/LICENSE -------------------------------------------------------------------------------- /src/Cache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Cache/README.md -------------------------------------------------------------------------------- /src/Cache/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Cache/composer.json -------------------------------------------------------------------------------- /src/Cache/src/Bootloader/CacheBootloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Cache/src/Bootloader/CacheBootloader.php -------------------------------------------------------------------------------- /src/Cache/src/CacheManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Cache/src/CacheManager.php -------------------------------------------------------------------------------- /src/Cache/src/CacheRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Cache/src/CacheRepository.php -------------------------------------------------------------------------------- /src/Cache/src/Config/CacheConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Cache/src/Config/CacheConfig.php -------------------------------------------------------------------------------- /src/Cache/src/Core/CacheInjector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Cache/src/Core/CacheInjector.php -------------------------------------------------------------------------------- /src/Cache/src/Event/CacheEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Cache/src/Event/CacheEvent.php -------------------------------------------------------------------------------- /src/Cache/src/Event/CacheHit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Cache/src/Event/CacheHit.php -------------------------------------------------------------------------------- /src/Cache/src/Event/CacheMissed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Cache/src/Event/CacheMissed.php -------------------------------------------------------------------------------- /src/Cache/src/Event/CacheRetrieving.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Cache/src/Event/CacheRetrieving.php -------------------------------------------------------------------------------- /src/Cache/src/Event/KeyDeleteFailed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Cache/src/Event/KeyDeleteFailed.php -------------------------------------------------------------------------------- /src/Cache/src/Event/KeyDeleted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Cache/src/Event/KeyDeleted.php -------------------------------------------------------------------------------- /src/Cache/src/Event/KeyDeleting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Cache/src/Event/KeyDeleting.php -------------------------------------------------------------------------------- /src/Cache/src/Event/KeyWriteFailed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Cache/src/Event/KeyWriteFailed.php -------------------------------------------------------------------------------- /src/Cache/src/Event/KeyWriting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Cache/src/Event/KeyWriting.php -------------------------------------------------------------------------------- /src/Cache/src/Event/KeyWritten.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Cache/src/Event/KeyWritten.php -------------------------------------------------------------------------------- /src/Cache/src/Exception/CacheException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Cache/src/Exception/CacheException.php -------------------------------------------------------------------------------- /src/Cache/src/Exception/StorageException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Cache/src/Exception/StorageException.php -------------------------------------------------------------------------------- /src/Cache/src/Storage/ArrayStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Cache/src/Storage/ArrayStorage.php -------------------------------------------------------------------------------- /src/Cache/src/Storage/FileStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Cache/src/Storage/FileStorage.php -------------------------------------------------------------------------------- /src/Cache/src/Storage/InteractsWithTime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Cache/src/Storage/InteractsWithTime.php -------------------------------------------------------------------------------- /src/Config/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Config/LICENSE -------------------------------------------------------------------------------- /src/Config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Config/README.md -------------------------------------------------------------------------------- /src/Config/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Config/composer.json -------------------------------------------------------------------------------- /src/Config/src/ConfigManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Config/src/ConfigManager.php -------------------------------------------------------------------------------- /src/Config/src/ConfiguratorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Config/src/ConfiguratorInterface.php -------------------------------------------------------------------------------- /src/Config/src/Exception/LoaderException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Config/src/Exception/LoaderException.php -------------------------------------------------------------------------------- /src/Config/src/Exception/PatchException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Config/src/Exception/PatchException.php -------------------------------------------------------------------------------- /src/Config/src/Loader/DirectoryLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Config/src/Loader/DirectoryLoader.php -------------------------------------------------------------------------------- /src/Config/src/Loader/FileLoaderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Config/src/Loader/FileLoaderInterface.php -------------------------------------------------------------------------------- /src/Config/src/Loader/JsonLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Config/src/Loader/JsonLoader.php -------------------------------------------------------------------------------- /src/Config/src/Loader/PhpLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Config/src/Loader/PhpLoader.php -------------------------------------------------------------------------------- /src/Config/src/LoaderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Config/src/LoaderInterface.php -------------------------------------------------------------------------------- /src/Config/src/Patch/Append.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Config/src/Patch/Append.php -------------------------------------------------------------------------------- /src/Config/src/Patch/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Config/src/Patch/Delete.php -------------------------------------------------------------------------------- /src/Config/src/Patch/Group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Config/src/Patch/Group.php -------------------------------------------------------------------------------- /src/Config/src/Patch/Prepend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Config/src/Patch/Prepend.php -------------------------------------------------------------------------------- /src/Config/src/Patch/Set.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Config/src/Patch/Set.php -------------------------------------------------------------------------------- /src/Config/src/Patch/Traits/DotTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Config/src/Patch/Traits/DotTrait.php -------------------------------------------------------------------------------- /src/Config/src/PatchInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Config/src/PatchInterface.php -------------------------------------------------------------------------------- /src/Console/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Console/LICENSE -------------------------------------------------------------------------------- /src/Console/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Console/README.md -------------------------------------------------------------------------------- /src/Console/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Console/composer.json -------------------------------------------------------------------------------- /src/Console/src/Attribute/Argument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Console/src/Attribute/Argument.php -------------------------------------------------------------------------------- /src/Console/src/Attribute/AsCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Console/src/Attribute/AsCommand.php -------------------------------------------------------------------------------- /src/Console/src/Attribute/Option.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Console/src/Attribute/Option.php -------------------------------------------------------------------------------- /src/Console/src/Attribute/Question.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Console/src/Attribute/Question.php -------------------------------------------------------------------------------- /src/Console/src/Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Console/src/Command.php -------------------------------------------------------------------------------- /src/Console/src/Command/ConfigureCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Console/src/Command/ConfigureCommand.php -------------------------------------------------------------------------------- /src/Console/src/Command/SequenceCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Console/src/Command/SequenceCommand.php -------------------------------------------------------------------------------- /src/Console/src/Command/UpdateCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Console/src/Command/UpdateCommand.php -------------------------------------------------------------------------------- /src/Console/src/CommandCore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Console/src/CommandCore.php -------------------------------------------------------------------------------- /src/Console/src/CommandCoreFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Console/src/CommandCoreFactory.php -------------------------------------------------------------------------------- /src/Console/src/CommandLocatorListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Console/src/CommandLocatorListener.php -------------------------------------------------------------------------------- /src/Console/src/CommandOutput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Console/src/CommandOutput.php -------------------------------------------------------------------------------- /src/Console/src/Config/ConsoleConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Console/src/Config/ConsoleConfig.php -------------------------------------------------------------------------------- /src/Console/src/Configurator/Configurator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Console/src/Configurator/Configurator.php -------------------------------------------------------------------------------- /src/Console/src/Console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Console/src/Console.php -------------------------------------------------------------------------------- /src/Console/src/Event/CommandFinished.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Console/src/Event/CommandFinished.php -------------------------------------------------------------------------------- /src/Console/src/Event/CommandStarting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Console/src/Event/CommandStarting.php -------------------------------------------------------------------------------- /src/Console/src/Exception/ConfigException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Console/src/Exception/ConfigException.php -------------------------------------------------------------------------------- /src/Console/src/InputProxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Console/src/InputProxy.php -------------------------------------------------------------------------------- /src/Console/src/LocatorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Console/src/LocatorInterface.php -------------------------------------------------------------------------------- /src/Console/src/PromptArguments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Console/src/PromptArguments.php -------------------------------------------------------------------------------- /src/Console/src/Sequence/AbstractSequence.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Console/src/Sequence/AbstractSequence.php -------------------------------------------------------------------------------- /src/Console/src/Sequence/CallableSequence.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Console/src/Sequence/CallableSequence.php -------------------------------------------------------------------------------- /src/Console/src/Sequence/CommandSequence.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Console/src/Sequence/CommandSequence.php -------------------------------------------------------------------------------- /src/Console/src/SequenceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Console/src/SequenceInterface.php -------------------------------------------------------------------------------- /src/Console/src/StaticLocator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Console/src/StaticLocator.php -------------------------------------------------------------------------------- /src/Console/src/Traits/HelpersTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Console/src/Traits/HelpersTrait.php -------------------------------------------------------------------------------- /src/Console/src/Traits/LazyTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Console/src/Traits/LazyTrait.php -------------------------------------------------------------------------------- /src/Cookies/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Cookies/LICENSE -------------------------------------------------------------------------------- /src/Cookies/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Cookies/README.md -------------------------------------------------------------------------------- /src/Cookies/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Cookies/composer.json -------------------------------------------------------------------------------- /src/Cookies/src/Config/CookiesConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Cookies/src/Config/CookiesConfig.php -------------------------------------------------------------------------------- /src/Cookies/src/Cookie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Cookies/src/Cookie.php -------------------------------------------------------------------------------- /src/Cookies/src/Cookie/SameSite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Cookies/src/Cookie/SameSite.php -------------------------------------------------------------------------------- /src/Cookies/src/CookieQueue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Cookies/src/CookieQueue.php -------------------------------------------------------------------------------- /src/Cookies/src/Exception/CookieException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Cookies/src/Exception/CookieException.php -------------------------------------------------------------------------------- /src/Core/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Core/LICENSE -------------------------------------------------------------------------------- /src/Core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Core/README.md -------------------------------------------------------------------------------- /src/Core/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Core/composer.json -------------------------------------------------------------------------------- /src/Core/src/Attribute/Finalize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Core/src/Attribute/Finalize.php -------------------------------------------------------------------------------- /src/Core/src/Attribute/Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Core/src/Attribute/Plugin.php -------------------------------------------------------------------------------- /src/Core/src/Attribute/Proxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Core/src/Attribute/Proxy.php -------------------------------------------------------------------------------- /src/Core/src/Attribute/Scope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Core/src/Attribute/Scope.php -------------------------------------------------------------------------------- /src/Core/src/Attribute/Singleton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Core/src/Attribute/Singleton.php -------------------------------------------------------------------------------- /src/Core/src/BinderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Core/src/BinderInterface.php -------------------------------------------------------------------------------- /src/Core/src/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Core/src/Config.php -------------------------------------------------------------------------------- /src/Core/src/Config/Alias.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Core/src/Config/Alias.php -------------------------------------------------------------------------------- /src/Core/src/Config/Autowire.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Core/src/Config/Autowire.php -------------------------------------------------------------------------------- /src/Core/src/Config/Binding.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Core/src/Config/Binding.php -------------------------------------------------------------------------------- /src/Core/src/Config/DeferredFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Core/src/Config/DeferredFactory.php -------------------------------------------------------------------------------- /src/Core/src/Config/DeprecationProxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Core/src/Config/DeprecationProxy.php -------------------------------------------------------------------------------- /src/Core/src/Config/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Core/src/Config/Factory.php -------------------------------------------------------------------------------- /src/Core/src/Config/Inflector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Core/src/Config/Inflector.php -------------------------------------------------------------------------------- /src/Core/src/Config/Injectable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Core/src/Config/Injectable.php -------------------------------------------------------------------------------- /src/Core/src/Config/Proxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Core/src/Config/Proxy.php -------------------------------------------------------------------------------- /src/Core/src/Config/Scalar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Core/src/Config/Scalar.php -------------------------------------------------------------------------------- /src/Core/src/Config/Shared.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Core/src/Config/Shared.php -------------------------------------------------------------------------------- /src/Core/src/Config/WeakReference.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Core/src/Config/WeakReference.php -------------------------------------------------------------------------------- /src/Core/src/ConfigsInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Core/src/ConfigsInterface.php -------------------------------------------------------------------------------- /src/Core/src/Container.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Core/src/Container.php -------------------------------------------------------------------------------- /src/Core/src/Container/Autowire.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Core/src/Container/Autowire.php -------------------------------------------------------------------------------- /src/Core/src/Container/InjectorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Core/src/Container/InjectorInterface.php -------------------------------------------------------------------------------- /src/Core/src/Container/SingletonInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Core/src/Container/SingletonInterface.php -------------------------------------------------------------------------------- /src/Core/src/ContainerScope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Core/src/ContainerScope.php -------------------------------------------------------------------------------- /src/Core/src/Exception/ConfigException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Core/src/Exception/ConfigException.php -------------------------------------------------------------------------------- /src/Core/src/Exception/LogicException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Core/src/Exception/LogicException.php -------------------------------------------------------------------------------- /src/Core/src/Exception/RuntimeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Core/src/Exception/RuntimeException.php -------------------------------------------------------------------------------- /src/Core/src/Exception/ScopeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Core/src/Exception/ScopeException.php -------------------------------------------------------------------------------- /src/Core/src/FactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Core/src/FactoryInterface.php -------------------------------------------------------------------------------- /src/Core/src/InjectableConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Core/src/InjectableConfig.php -------------------------------------------------------------------------------- /src/Core/src/Internal/Actor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Core/src/Internal/Actor.php -------------------------------------------------------------------------------- /src/Core/src/Internal/Binder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Core/src/Internal/Binder.php -------------------------------------------------------------------------------- /src/Core/src/Internal/Common/Registry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Core/src/Internal/Common/Registry.php -------------------------------------------------------------------------------- /src/Core/src/Internal/Config/StateBinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Core/src/Internal/Config/StateBinder.php -------------------------------------------------------------------------------- /src/Core/src/Internal/Config/StateStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Core/src/Internal/Config/StateStorage.php -------------------------------------------------------------------------------- /src/Core/src/Internal/Container.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Core/src/Internal/Container.php -------------------------------------------------------------------------------- /src/Core/src/Internal/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Core/src/Internal/Factory.php -------------------------------------------------------------------------------- /src/Core/src/Internal/Factory/Ctx.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Core/src/Internal/Factory/Ctx.php -------------------------------------------------------------------------------- /src/Core/src/Internal/Introspector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Core/src/Internal/Introspector.php -------------------------------------------------------------------------------- /src/Core/src/Internal/Invoker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Core/src/Internal/Invoker.php -------------------------------------------------------------------------------- /src/Core/src/Internal/Proxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Core/src/Internal/Proxy.php -------------------------------------------------------------------------------- /src/Core/src/Internal/Proxy/ProxyTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Core/src/Internal/Proxy/ProxyTrait.php -------------------------------------------------------------------------------- /src/Core/src/Internal/Proxy/Resolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Core/src/Internal/Proxy/Resolver.php -------------------------------------------------------------------------------- /src/Core/src/Internal/Proxy/RetryContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Core/src/Internal/Proxy/RetryContext.php -------------------------------------------------------------------------------- /src/Core/src/Internal/Resolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Core/src/Internal/Resolver.php -------------------------------------------------------------------------------- /src/Core/src/Internal/Scope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Core/src/Internal/Scope.php -------------------------------------------------------------------------------- /src/Core/src/Internal/State.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Core/src/Internal/State.php -------------------------------------------------------------------------------- /src/Core/src/Internal/Tracer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Core/src/Internal/Tracer.php -------------------------------------------------------------------------------- /src/Core/src/Internal/Tracer/Trace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Core/src/Internal/Tracer/Trace.php -------------------------------------------------------------------------------- /src/Core/src/InvokerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Core/src/InvokerInterface.php -------------------------------------------------------------------------------- /src/Core/src/Options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Core/src/Options.php -------------------------------------------------------------------------------- /src/Core/src/ResolverInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Core/src/ResolverInterface.php -------------------------------------------------------------------------------- /src/Core/src/Scope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Core/src/Scope.php -------------------------------------------------------------------------------- /src/Core/src/ScopeInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Core/src/ScopeInterface.php -------------------------------------------------------------------------------- /src/Core/src/Traits/Config/AliasTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Core/src/Traits/Config/AliasTrait.php -------------------------------------------------------------------------------- /src/Csrf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Csrf/LICENSE -------------------------------------------------------------------------------- /src/Csrf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Csrf/README.md -------------------------------------------------------------------------------- /src/Csrf/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Csrf/composer.json -------------------------------------------------------------------------------- /src/Csrf/src/Config/CsrfConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Csrf/src/Config/CsrfConfig.php -------------------------------------------------------------------------------- /src/Csrf/src/Middleware/CsrfFirewall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Csrf/src/Middleware/CsrfFirewall.php -------------------------------------------------------------------------------- /src/Csrf/src/Middleware/CsrfMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Csrf/src/Middleware/CsrfMiddleware.php -------------------------------------------------------------------------------- /src/Debug/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Debug/LICENSE -------------------------------------------------------------------------------- /src/Debug/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Debug/README.md -------------------------------------------------------------------------------- /src/Debug/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Debug/composer.json -------------------------------------------------------------------------------- /src/Debug/src/Exception/StateException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Debug/src/Exception/StateException.php -------------------------------------------------------------------------------- /src/Debug/src/State.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Debug/src/State.php -------------------------------------------------------------------------------- /src/Debug/src/StateConsumerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Debug/src/StateConsumerInterface.php -------------------------------------------------------------------------------- /src/Debug/src/StateInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Debug/src/StateInterface.php -------------------------------------------------------------------------------- /src/Distribution/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Distribution/LICENSE -------------------------------------------------------------------------------- /src/Distribution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Distribution/README.md -------------------------------------------------------------------------------- /src/Distribution/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Distribution/composer.json -------------------------------------------------------------------------------- /src/Distribution/src/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Distribution/src/Manager.php -------------------------------------------------------------------------------- /src/Distribution/src/Resolver/UriResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Distribution/src/Resolver/UriResolver.php -------------------------------------------------------------------------------- /src/Distribution/src/UriResolverInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Distribution/src/UriResolverInterface.php -------------------------------------------------------------------------------- /src/Encrypter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Encrypter/LICENSE -------------------------------------------------------------------------------- /src/Encrypter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Encrypter/README.md -------------------------------------------------------------------------------- /src/Encrypter/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Encrypter/composer.json -------------------------------------------------------------------------------- /src/Encrypter/src/Config/EncrypterConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Encrypter/src/Config/EncrypterConfig.php -------------------------------------------------------------------------------- /src/Encrypter/src/Encrypter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Encrypter/src/Encrypter.php -------------------------------------------------------------------------------- /src/Encrypter/src/EncrypterFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Encrypter/src/EncrypterFactory.php -------------------------------------------------------------------------------- /src/Encrypter/src/EncrypterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Encrypter/src/EncrypterInterface.php -------------------------------------------------------------------------------- /src/Encrypter/src/EncryptionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Encrypter/src/EncryptionInterface.php -------------------------------------------------------------------------------- /src/Events/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Events/LICENSE -------------------------------------------------------------------------------- /src/Events/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Events/README.md -------------------------------------------------------------------------------- /src/Events/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Events/composer.json -------------------------------------------------------------------------------- /src/Events/src/Attribute/Listener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Events/src/Attribute/Listener.php -------------------------------------------------------------------------------- /src/Events/src/AutowireListenerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Events/src/AutowireListenerFactory.php -------------------------------------------------------------------------------- /src/Events/src/Config/EventListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Events/src/Config/EventListener.php -------------------------------------------------------------------------------- /src/Events/src/Config/EventsConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Events/src/Config/EventsConfig.php -------------------------------------------------------------------------------- /src/Events/src/EventDispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Events/src/EventDispatcher.php -------------------------------------------------------------------------------- /src/Events/src/Interceptor/Core.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Events/src/Interceptor/Core.php -------------------------------------------------------------------------------- /src/Events/src/ListenerFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Events/src/ListenerFactoryInterface.php -------------------------------------------------------------------------------- /src/Events/src/ListenerProcessorRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Events/src/ListenerProcessorRegistry.php -------------------------------------------------------------------------------- /src/Events/src/ListenerRegistryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Events/src/ListenerRegistryInterface.php -------------------------------------------------------------------------------- /src/Events/src/Processor/ConfigProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Events/src/Processor/ConfigProcessor.php -------------------------------------------------------------------------------- /src/Exceptions/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Exceptions/LICENSE -------------------------------------------------------------------------------- /src/Exceptions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Exceptions/README.md -------------------------------------------------------------------------------- /src/Exceptions/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Exceptions/composer.json -------------------------------------------------------------------------------- /src/Exceptions/src/ExceptionHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Exceptions/src/ExceptionHandler.php -------------------------------------------------------------------------------- /src/Exceptions/src/Renderer/Highlighter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Exceptions/src/Renderer/Highlighter.php -------------------------------------------------------------------------------- /src/Exceptions/src/Renderer/JsonRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Exceptions/src/Renderer/JsonRenderer.php -------------------------------------------------------------------------------- /src/Exceptions/src/Renderer/PlainRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Exceptions/src/Renderer/PlainRenderer.php -------------------------------------------------------------------------------- /src/Exceptions/src/Style/ConsoleStyle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Exceptions/src/Style/ConsoleStyle.php -------------------------------------------------------------------------------- /src/Exceptions/src/Style/PlainStyle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Exceptions/src/Style/PlainStyle.php -------------------------------------------------------------------------------- /src/Exceptions/src/StyleInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Exceptions/src/StyleInterface.php -------------------------------------------------------------------------------- /src/Exceptions/src/Verbosity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Exceptions/src/Verbosity.php -------------------------------------------------------------------------------- /src/Files/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Files/LICENSE -------------------------------------------------------------------------------- /src/Files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Files/README.md -------------------------------------------------------------------------------- /src/Files/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Files/composer.json -------------------------------------------------------------------------------- /src/Files/src/Exception/FilesException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Files/src/Exception/FilesException.php -------------------------------------------------------------------------------- /src/Files/src/Files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Files/src/Files.php -------------------------------------------------------------------------------- /src/Files/src/FilesInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Files/src/FilesInterface.php -------------------------------------------------------------------------------- /src/Filters/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Filters/LICENSE -------------------------------------------------------------------------------- /src/Filters/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Filters/README.md -------------------------------------------------------------------------------- /src/Filters/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Filters/composer.json -------------------------------------------------------------------------------- /src/Filters/src/Attribute/Input/Attribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Filters/src/Attribute/Input/Attribute.php -------------------------------------------------------------------------------- /src/Filters/src/Attribute/Input/Cookie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Filters/src/Attribute/Input/Cookie.php -------------------------------------------------------------------------------- /src/Filters/src/Attribute/Input/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Filters/src/Attribute/Input/Data.php -------------------------------------------------------------------------------- /src/Filters/src/Attribute/Input/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Filters/src/Attribute/Input/File.php -------------------------------------------------------------------------------- /src/Filters/src/Attribute/Input/Header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Filters/src/Attribute/Input/Header.php -------------------------------------------------------------------------------- /src/Filters/src/Attribute/Input/Input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Filters/src/Attribute/Input/Input.php -------------------------------------------------------------------------------- /src/Filters/src/Attribute/Input/IsAjax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Filters/src/Attribute/Input/IsAjax.php -------------------------------------------------------------------------------- /src/Filters/src/Attribute/Input/IsSecure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Filters/src/Attribute/Input/IsSecure.php -------------------------------------------------------------------------------- /src/Filters/src/Attribute/Input/Method.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Filters/src/Attribute/Input/Method.php -------------------------------------------------------------------------------- /src/Filters/src/Attribute/Input/Path.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Filters/src/Attribute/Input/Path.php -------------------------------------------------------------------------------- /src/Filters/src/Attribute/Input/Post.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Filters/src/Attribute/Input/Post.php -------------------------------------------------------------------------------- /src/Filters/src/Attribute/Input/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Filters/src/Attribute/Input/Query.php -------------------------------------------------------------------------------- /src/Filters/src/Attribute/Input/Route.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Filters/src/Attribute/Input/Route.php -------------------------------------------------------------------------------- /src/Filters/src/Attribute/Input/Server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Filters/src/Attribute/Input/Server.php -------------------------------------------------------------------------------- /src/Filters/src/Attribute/Input/Uri.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Filters/src/Attribute/Input/Uri.php -------------------------------------------------------------------------------- /src/Filters/src/Attribute/NestedArray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Filters/src/Attribute/NestedArray.php -------------------------------------------------------------------------------- /src/Filters/src/Attribute/NestedFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Filters/src/Attribute/NestedFilter.php -------------------------------------------------------------------------------- /src/Filters/src/Attribute/Setter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Filters/src/Attribute/Setter.php -------------------------------------------------------------------------------- /src/Filters/src/Config/FiltersConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Filters/src/Config/FiltersConfig.php -------------------------------------------------------------------------------- /src/Filters/src/ErrorMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Filters/src/ErrorMapper.php -------------------------------------------------------------------------------- /src/Filters/src/ErrorsRendererInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Filters/src/ErrorsRendererInterface.php -------------------------------------------------------------------------------- /src/Filters/src/Exception/FilterException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Filters/src/Exception/FilterException.php -------------------------------------------------------------------------------- /src/Filters/src/Exception/InputException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Filters/src/Exception/InputException.php -------------------------------------------------------------------------------- /src/Filters/src/Exception/SchemaException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Filters/src/Exception/SchemaException.php -------------------------------------------------------------------------------- /src/Filters/src/Exception/SetterException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Filters/src/Exception/SetterException.php -------------------------------------------------------------------------------- /src/Filters/src/InputInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Filters/src/InputInterface.php -------------------------------------------------------------------------------- /src/Filters/src/Model/Filter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Filters/src/Model/Filter.php -------------------------------------------------------------------------------- /src/Filters/src/Model/FilterBag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Filters/src/Model/FilterBag.php -------------------------------------------------------------------------------- /src/Filters/src/Model/FilterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Filters/src/Model/FilterInterface.php -------------------------------------------------------------------------------- /src/Filters/src/Model/FilterProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Filters/src/Model/FilterProvider.php -------------------------------------------------------------------------------- /src/Filters/src/Model/HasFilterDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Filters/src/Model/HasFilterDefinition.php -------------------------------------------------------------------------------- /src/Filters/src/Model/Interceptor/Core.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Filters/src/Model/Interceptor/Core.php -------------------------------------------------------------------------------- /src/Filters/src/Model/Mapper/EnumCaster.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Filters/src/Model/Mapper/EnumCaster.php -------------------------------------------------------------------------------- /src/Filters/src/Model/Mapper/Mapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Filters/src/Model/Mapper/Mapper.php -------------------------------------------------------------------------------- /src/Filters/src/Model/Mapper/UuidCaster.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Filters/src/Model/Mapper/UuidCaster.php -------------------------------------------------------------------------------- /src/Filters/src/Model/Schema/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Filters/src/Model/Schema/Builder.php -------------------------------------------------------------------------------- /src/Filters/src/Model/Schema/InputMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Filters/src/Model/Schema/InputMapper.php -------------------------------------------------------------------------------- /src/Filters/src/Model/ShouldBeValidated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Filters/src/Model/ShouldBeValidated.php -------------------------------------------------------------------------------- /src/Framework/Attribute/DispatcherScope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Framework/Attribute/DispatcherScope.php -------------------------------------------------------------------------------- /src/Framework/Auth/AuthScope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Framework/Auth/AuthScope.php -------------------------------------------------------------------------------- /src/Framework/Auth/Config/AuthConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Framework/Auth/Config/AuthConfig.php -------------------------------------------------------------------------------- /src/Framework/Auth/Session/Token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Framework/Auth/Session/Token.php -------------------------------------------------------------------------------- /src/Framework/Auth/Session/TokenStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Framework/Auth/Session/TokenStorage.php -------------------------------------------------------------------------------- /src/Framework/Auth/TokenStorageScope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Framework/Auth/TokenStorageScope.php -------------------------------------------------------------------------------- /src/Framework/Bootloader/DebugBootloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Framework/Bootloader/DebugBootloader.php -------------------------------------------------------------------------------- /src/Framework/Bootloader/DomainBootloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Framework/Bootloader/DomainBootloader.php -------------------------------------------------------------------------------- /src/Framework/Bootloader/I18nBootloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Framework/Bootloader/I18nBootloader.php -------------------------------------------------------------------------------- /src/Framework/Command/CleanCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Framework/Command/CleanCommand.php -------------------------------------------------------------------------------- /src/Framework/Command/PublishCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Framework/Command/PublishCommand.php -------------------------------------------------------------------------------- /src/Framework/Command/Router/ListCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Framework/Command/Router/ListCommand.php -------------------------------------------------------------------------------- /src/Framework/Command/Views/ResetCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Framework/Command/Views/ResetCommand.php -------------------------------------------------------------------------------- /src/Framework/Console/CommandLocator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Framework/Console/CommandLocator.php -------------------------------------------------------------------------------- /src/Framework/Console/ConsoleDispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Framework/Console/ConsoleDispatcher.php -------------------------------------------------------------------------------- /src/Framework/Cookies/CookieManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Framework/Cookies/CookieManager.php -------------------------------------------------------------------------------- /src/Framework/Debug/Config/DebugConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Framework/Debug/Config/DebugConfig.php -------------------------------------------------------------------------------- /src/Framework/Domain/Annotation/Guarded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Framework/Domain/Annotation/Guarded.php -------------------------------------------------------------------------------- /src/Framework/Domain/Annotation/Pipeline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Framework/Domain/Annotation/Pipeline.php -------------------------------------------------------------------------------- /src/Framework/Domain/GuardInterceptor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Framework/Domain/GuardInterceptor.php -------------------------------------------------------------------------------- /src/Framework/Domain/Permission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Framework/Domain/Permission.php -------------------------------------------------------------------------------- /src/Framework/Domain/PipelineInterceptor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Framework/Domain/PipelineInterceptor.php -------------------------------------------------------------------------------- /src/Framework/Filter/InputScope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Framework/Filter/InputScope.php -------------------------------------------------------------------------------- /src/Framework/Filter/JsonErrorsRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Framework/Filter/JsonErrorsRenderer.php -------------------------------------------------------------------------------- /src/Framework/Framework/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Framework/Framework/Kernel.php -------------------------------------------------------------------------------- /src/Framework/Framework/Spiral.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Framework/Framework/Spiral.php -------------------------------------------------------------------------------- /src/Framework/Http/PaginationFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Framework/Http/PaginationFactory.php -------------------------------------------------------------------------------- /src/Framework/Module/Publisher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Framework/Module/Publisher.php -------------------------------------------------------------------------------- /src/Framework/Module/PublisherInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Framework/Module/PublisherInterface.php -------------------------------------------------------------------------------- /src/Framework/Security/GuardScope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Framework/Security/GuardScope.php -------------------------------------------------------------------------------- /src/Framework/Session/SectionScope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Framework/Session/SectionScope.php -------------------------------------------------------------------------------- /src/Framework/Session/SessionScope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Framework/Session/SessionScope.php -------------------------------------------------------------------------------- /src/Framework/Snapshots/FileSnapshooter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Framework/Snapshots/FileSnapshooter.php -------------------------------------------------------------------------------- /src/Framework/Translator/MemoryCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Framework/Translator/MemoryCache.php -------------------------------------------------------------------------------- /src/Framework/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Framework/helpers.php -------------------------------------------------------------------------------- /src/Hmvc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Hmvc/LICENSE -------------------------------------------------------------------------------- /src/Hmvc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Hmvc/README.md -------------------------------------------------------------------------------- /src/Hmvc/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Hmvc/composer.json -------------------------------------------------------------------------------- /src/Hmvc/src/AbstractCore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Hmvc/src/AbstractCore.php -------------------------------------------------------------------------------- /src/Hmvc/src/CompatiblePipelineBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Hmvc/src/CompatiblePipelineBuilder.php -------------------------------------------------------------------------------- /src/Hmvc/src/Core.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Hmvc/src/Core.php -------------------------------------------------------------------------------- /src/Hmvc/src/CoreInterceptorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Hmvc/src/CoreInterceptorInterface.php -------------------------------------------------------------------------------- /src/Hmvc/src/CoreInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Hmvc/src/CoreInterface.php -------------------------------------------------------------------------------- /src/Hmvc/src/Event/InterceptorCalling.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Hmvc/src/Event/InterceptorCalling.php -------------------------------------------------------------------------------- /src/Hmvc/src/Exception/CoreException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Hmvc/src/Exception/CoreException.php -------------------------------------------------------------------------------- /src/Hmvc/src/InterceptableCore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Hmvc/src/InterceptableCore.php -------------------------------------------------------------------------------- /src/Hmvc/src/InterceptorPipeline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Hmvc/src/InterceptorPipeline.php -------------------------------------------------------------------------------- /src/Http/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Http/LICENSE -------------------------------------------------------------------------------- /src/Http/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Http/README.md -------------------------------------------------------------------------------- /src/Http/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Http/composer.json -------------------------------------------------------------------------------- /src/Http/src/CallableHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Http/src/CallableHandler.php -------------------------------------------------------------------------------- /src/Http/src/Config/HttpConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Http/src/Config/HttpConfig.php -------------------------------------------------------------------------------- /src/Http/src/CurrentRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Http/src/CurrentRequest.php -------------------------------------------------------------------------------- /src/Http/src/ErrorHandler/PlainRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Http/src/ErrorHandler/PlainRenderer.php -------------------------------------------------------------------------------- /src/Http/src/Event/MiddlewareProcessing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Http/src/Event/MiddlewareProcessing.php -------------------------------------------------------------------------------- /src/Http/src/Event/RequestHandled.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Http/src/Event/RequestHandled.php -------------------------------------------------------------------------------- /src/Http/src/Event/RequestReceived.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Http/src/Event/RequestReceived.php -------------------------------------------------------------------------------- /src/Http/src/Exception/ClientException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Http/src/Exception/ClientException.php -------------------------------------------------------------------------------- /src/Http/src/Exception/HttpException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Http/src/Exception/HttpException.php -------------------------------------------------------------------------------- /src/Http/src/Exception/InputException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Http/src/Exception/InputException.php -------------------------------------------------------------------------------- /src/Http/src/Exception/PipelineException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Http/src/Exception/PipelineException.php -------------------------------------------------------------------------------- /src/Http/src/Exception/ResponseException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Http/src/Exception/ResponseException.php -------------------------------------------------------------------------------- /src/Http/src/Header/AcceptHeader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Http/src/Header/AcceptHeader.php -------------------------------------------------------------------------------- /src/Http/src/Header/AcceptHeaderItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Http/src/Header/AcceptHeaderItem.php -------------------------------------------------------------------------------- /src/Http/src/Http.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Http/src/Http.php -------------------------------------------------------------------------------- /src/Http/src/LazyPipeline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Http/src/LazyPipeline.php -------------------------------------------------------------------------------- /src/Http/src/Pipeline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Http/src/Pipeline.php -------------------------------------------------------------------------------- /src/Http/src/Request/FilesBag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Http/src/Request/FilesBag.php -------------------------------------------------------------------------------- /src/Http/src/Request/HeadersBag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Http/src/Request/HeadersBag.php -------------------------------------------------------------------------------- /src/Http/src/Request/InputBag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Http/src/Request/InputBag.php -------------------------------------------------------------------------------- /src/Http/src/Request/InputManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Http/src/Request/InputManager.php -------------------------------------------------------------------------------- /src/Http/src/Request/ServerBag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Http/src/Request/ServerBag.php -------------------------------------------------------------------------------- /src/Http/src/ResponseWrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Http/src/ResponseWrapper.php -------------------------------------------------------------------------------- /src/Http/src/Stream/GeneratorStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Http/src/Stream/GeneratorStream.php -------------------------------------------------------------------------------- /src/Http/src/Traits/JsonTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Http/src/Traits/JsonTrait.php -------------------------------------------------------------------------------- /src/Http/src/Traits/MiddlewareTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Http/src/Traits/MiddlewareTrait.php -------------------------------------------------------------------------------- /src/Interceptors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Interceptors/LICENSE -------------------------------------------------------------------------------- /src/Interceptors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Interceptors/README.md -------------------------------------------------------------------------------- /src/Interceptors/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Interceptors/composer.json -------------------------------------------------------------------------------- /src/Interceptors/src/Context/CallContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Interceptors/src/Context/CallContext.php -------------------------------------------------------------------------------- /src/Interceptors/src/Context/Target.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Interceptors/src/Context/Target.php -------------------------------------------------------------------------------- /src/Interceptors/src/HandlerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Interceptors/src/HandlerInterface.php -------------------------------------------------------------------------------- /src/Interceptors/src/InterceptorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Interceptors/src/InterceptorInterface.php -------------------------------------------------------------------------------- /src/Interceptors/src/PipelineBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Interceptors/src/PipelineBuilder.php -------------------------------------------------------------------------------- /src/Logger/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Logger/LICENSE -------------------------------------------------------------------------------- /src/Logger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Logger/README.md -------------------------------------------------------------------------------- /src/Logger/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Logger/composer.json -------------------------------------------------------------------------------- /src/Logger/src/Attribute/LoggerChannel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Logger/src/Attribute/LoggerChannel.php -------------------------------------------------------------------------------- /src/Logger/src/Event/LogEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Logger/src/Event/LogEvent.php -------------------------------------------------------------------------------- /src/Logger/src/ListenerRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Logger/src/ListenerRegistry.php -------------------------------------------------------------------------------- /src/Logger/src/ListenerRegistryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Logger/src/ListenerRegistryInterface.php -------------------------------------------------------------------------------- /src/Logger/src/LogFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Logger/src/LogFactory.php -------------------------------------------------------------------------------- /src/Logger/src/LoggerInjector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Logger/src/LoggerInjector.php -------------------------------------------------------------------------------- /src/Logger/src/LogsInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Logger/src/LogsInterface.php -------------------------------------------------------------------------------- /src/Logger/src/NullLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Logger/src/NullLogger.php -------------------------------------------------------------------------------- /src/Logger/src/Traits/LoggerTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Logger/src/Traits/LoggerTrait.php -------------------------------------------------------------------------------- /src/Mailer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Mailer/LICENSE -------------------------------------------------------------------------------- /src/Mailer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Mailer/README.md -------------------------------------------------------------------------------- /src/Mailer/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Mailer/composer.json -------------------------------------------------------------------------------- /src/Mailer/src/Exception/MailerException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Mailer/src/Exception/MailerException.php -------------------------------------------------------------------------------- /src/Mailer/src/MailerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Mailer/src/MailerInterface.php -------------------------------------------------------------------------------- /src/Mailer/src/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Mailer/src/Message.php -------------------------------------------------------------------------------- /src/Mailer/src/MessageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Mailer/src/MessageInterface.php -------------------------------------------------------------------------------- /src/Models/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Models/LICENSE -------------------------------------------------------------------------------- /src/Models/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Models/README.md -------------------------------------------------------------------------------- /src/Models/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Models/composer.json -------------------------------------------------------------------------------- /src/Models/src/AbstractEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Models/src/AbstractEntity.php -------------------------------------------------------------------------------- /src/Models/src/DataEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Models/src/DataEntity.php -------------------------------------------------------------------------------- /src/Models/src/EntityInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Models/src/EntityInterface.php -------------------------------------------------------------------------------- /src/Models/src/Exception/AccessException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Models/src/Exception/AccessException.php -------------------------------------------------------------------------------- /src/Models/src/Exception/EntityException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Models/src/Exception/EntityException.php -------------------------------------------------------------------------------- /src/Models/src/ModelSchema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Models/src/ModelSchema.php -------------------------------------------------------------------------------- /src/Models/src/SchematicEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Models/src/SchematicEntity.php -------------------------------------------------------------------------------- /src/Models/src/ValueInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Models/src/ValueInterface.php -------------------------------------------------------------------------------- /src/Pagination/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Pagination/LICENSE -------------------------------------------------------------------------------- /src/Pagination/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Pagination/README.md -------------------------------------------------------------------------------- /src/Pagination/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Pagination/composer.json -------------------------------------------------------------------------------- /src/Pagination/src/PaginableInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Pagination/src/PaginableInterface.php -------------------------------------------------------------------------------- /src/Pagination/src/Paginator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Pagination/src/Paginator.php -------------------------------------------------------------------------------- /src/Pagination/src/PaginatorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Pagination/src/PaginatorInterface.php -------------------------------------------------------------------------------- /src/Pagination/src/Traits/LimitsTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Pagination/src/Traits/LimitsTrait.php -------------------------------------------------------------------------------- /src/Prototype/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Prototype/LICENSE -------------------------------------------------------------------------------- /src/Prototype/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Prototype/README.md -------------------------------------------------------------------------------- /src/Prototype/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Prototype/composer.json -------------------------------------------------------------------------------- /src/Prototype/src/Annotation/Line.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Prototype/src/Annotation/Line.php -------------------------------------------------------------------------------- /src/Prototype/src/Annotation/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Prototype/src/Annotation/Parser.php -------------------------------------------------------------------------------- /src/Prototype/src/Annotation/Prototyped.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Prototype/src/Annotation/Prototyped.php -------------------------------------------------------------------------------- /src/Prototype/src/ClassNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Prototype/src/ClassNode.php -------------------------------------------------------------------------------- /src/Prototype/src/ClassNode/ClassStmt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Prototype/src/ClassNode/ClassStmt.php -------------------------------------------------------------------------------- /src/Prototype/src/ClassNode/Type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Prototype/src/ClassNode/Type.php -------------------------------------------------------------------------------- /src/Prototype/src/Command/AbstractCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Prototype/src/Command/AbstractCommand.php -------------------------------------------------------------------------------- /src/Prototype/src/Command/DumpCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Prototype/src/Command/DumpCommand.php -------------------------------------------------------------------------------- /src/Prototype/src/Command/InjectCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Prototype/src/Command/InjectCommand.php -------------------------------------------------------------------------------- /src/Prototype/src/Command/ListCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Prototype/src/Command/ListCommand.php -------------------------------------------------------------------------------- /src/Prototype/src/Command/UsageCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Prototype/src/Command/UsageCommand.php -------------------------------------------------------------------------------- /src/Prototype/src/Dependency.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Prototype/src/Dependency.php -------------------------------------------------------------------------------- /src/Prototype/src/Injector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Prototype/src/Injector.php -------------------------------------------------------------------------------- /src/Prototype/src/NodeExtractor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Prototype/src/NodeExtractor.php -------------------------------------------------------------------------------- /src/Prototype/src/NodeVisitors/AddUse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Prototype/src/NodeVisitors/AddUse.php -------------------------------------------------------------------------------- /src/Prototype/src/PropertyExtractor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Prototype/src/PropertyExtractor.php -------------------------------------------------------------------------------- /src/Prototype/src/PrototypeLocator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Prototype/src/PrototypeLocator.php -------------------------------------------------------------------------------- /src/Prototype/src/PrototypeRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Prototype/src/PrototypeRegistry.php -------------------------------------------------------------------------------- /src/Prototype/src/Traits/PrototypeTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Prototype/src/Traits/PrototypeTrait.php -------------------------------------------------------------------------------- /src/Prototype/src/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Prototype/src/Utils.php -------------------------------------------------------------------------------- /src/Queue/.gitattributes: -------------------------------------------------------------------------------- 1 | /tests export-ignore -------------------------------------------------------------------------------- /src/Queue/.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Queue/.github/FUNDING.yml -------------------------------------------------------------------------------- /src/Queue/.github/workflows/phpunit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Queue/.github/workflows/phpunit.yml -------------------------------------------------------------------------------- /src/Queue/.github/workflows/psalm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Queue/.github/workflows/psalm.yml -------------------------------------------------------------------------------- /src/Queue/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Queue/.gitignore -------------------------------------------------------------------------------- /src/Queue/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Queue/LICENSE -------------------------------------------------------------------------------- /src/Queue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Queue/README.md -------------------------------------------------------------------------------- /src/Queue/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Queue/composer.json -------------------------------------------------------------------------------- /src/Queue/src/Attribute/JobHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Queue/src/Attribute/JobHandler.php -------------------------------------------------------------------------------- /src/Queue/src/Attribute/Queueable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Queue/src/Attribute/Queueable.php -------------------------------------------------------------------------------- /src/Queue/src/Attribute/RetryPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Queue/src/Attribute/RetryPolicy.php -------------------------------------------------------------------------------- /src/Queue/src/Attribute/Serializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Queue/src/Attribute/Serializer.php -------------------------------------------------------------------------------- /src/Queue/src/Config/QueueConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Queue/src/Config/QueueConfig.php -------------------------------------------------------------------------------- /src/Queue/src/ContainerRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Queue/src/ContainerRegistry.php -------------------------------------------------------------------------------- /src/Queue/src/Core/QueueInjector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Queue/src/Core/QueueInjector.php -------------------------------------------------------------------------------- /src/Queue/src/Driver/NullDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Queue/src/Driver/NullDriver.php -------------------------------------------------------------------------------- /src/Queue/src/Driver/SyncDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Queue/src/Driver/SyncDriver.php -------------------------------------------------------------------------------- /src/Queue/src/Event/JobProcessed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Queue/src/Event/JobProcessed.php -------------------------------------------------------------------------------- /src/Queue/src/Event/JobProcessing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Queue/src/Event/JobProcessing.php -------------------------------------------------------------------------------- /src/Queue/src/Exception/FailException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Queue/src/Exception/FailException.php -------------------------------------------------------------------------------- /src/Queue/src/Exception/JobException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Queue/src/Exception/JobException.php -------------------------------------------------------------------------------- /src/Queue/src/Exception/QueueException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Queue/src/Exception/QueueException.php -------------------------------------------------------------------------------- /src/Queue/src/Exception/RetryException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Queue/src/Exception/RetryException.php -------------------------------------------------------------------------------- /src/Queue/src/Exception/StateException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Queue/src/Exception/StateException.php -------------------------------------------------------------------------------- /src/Queue/src/ExtendedOptionsInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Queue/src/ExtendedOptionsInterface.php -------------------------------------------------------------------------------- /src/Queue/src/HandlerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Queue/src/HandlerInterface.php -------------------------------------------------------------------------------- /src/Queue/src/HandlerRegistryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Queue/src/HandlerRegistryInterface.php -------------------------------------------------------------------------------- /src/Queue/src/Interceptor/Consume/Core.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Queue/src/Interceptor/Consume/Core.php -------------------------------------------------------------------------------- /src/Queue/src/Interceptor/Push/Core.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Queue/src/Interceptor/Push/Core.php -------------------------------------------------------------------------------- /src/Queue/src/Job/CallableJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Queue/src/Job/CallableJob.php -------------------------------------------------------------------------------- /src/Queue/src/Job/ObjectJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Queue/src/Job/ObjectJob.php -------------------------------------------------------------------------------- /src/Queue/src/JobHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Queue/src/JobHandler.php -------------------------------------------------------------------------------- /src/Queue/src/JobHandlerLocatorListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Queue/src/JobHandlerLocatorListener.php -------------------------------------------------------------------------------- /src/Queue/src/Options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Queue/src/Options.php -------------------------------------------------------------------------------- /src/Queue/src/OptionsInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Queue/src/OptionsInterface.php -------------------------------------------------------------------------------- /src/Queue/src/Queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Queue/src/Queue.php -------------------------------------------------------------------------------- /src/Queue/src/QueueInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Queue/src/QueueInterface.php -------------------------------------------------------------------------------- /src/Queue/src/QueueManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Queue/src/QueueManager.php -------------------------------------------------------------------------------- /src/Queue/src/QueueRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Queue/src/QueueRegistry.php -------------------------------------------------------------------------------- /src/Queue/src/QueueTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Queue/src/QueueTrait.php -------------------------------------------------------------------------------- /src/Queue/src/QueueableDetector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Queue/src/QueueableDetector.php -------------------------------------------------------------------------------- /src/Queue/src/QueueableInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Queue/src/QueueableInterface.php -------------------------------------------------------------------------------- /src/Queue/src/RetryPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Queue/src/RetryPolicy.php -------------------------------------------------------------------------------- /src/Queue/src/RetryPolicyInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Queue/src/RetryPolicyInterface.php -------------------------------------------------------------------------------- /src/Queue/src/SerializerLocatorListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Queue/src/SerializerLocatorListener.php -------------------------------------------------------------------------------- /src/Queue/src/Task.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Queue/src/Task.php -------------------------------------------------------------------------------- /src/Queue/src/TaskInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Queue/src/TaskInterface.php -------------------------------------------------------------------------------- /src/Reactor/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Reactor/LICENSE -------------------------------------------------------------------------------- /src/Reactor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Reactor/README.md -------------------------------------------------------------------------------- /src/Reactor/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Reactor/composer.json -------------------------------------------------------------------------------- /src/Reactor/src/AbstractDeclaration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Reactor/src/AbstractDeclaration.php -------------------------------------------------------------------------------- /src/Reactor/src/AggregableInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Reactor/src/AggregableInterface.php -------------------------------------------------------------------------------- /src/Reactor/src/Aggregator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Reactor/src/Aggregator.php -------------------------------------------------------------------------------- /src/Reactor/src/Aggregator/Classes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Reactor/src/Aggregator/Classes.php -------------------------------------------------------------------------------- /src/Reactor/src/Aggregator/Constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Reactor/src/Aggregator/Constants.php -------------------------------------------------------------------------------- /src/Reactor/src/Aggregator/Elements.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Reactor/src/Aggregator/Elements.php -------------------------------------------------------------------------------- /src/Reactor/src/Aggregator/EnumCases.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Reactor/src/Aggregator/EnumCases.php -------------------------------------------------------------------------------- /src/Reactor/src/Aggregator/Enums.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Reactor/src/Aggregator/Enums.php -------------------------------------------------------------------------------- /src/Reactor/src/Aggregator/Functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Reactor/src/Aggregator/Functions.php -------------------------------------------------------------------------------- /src/Reactor/src/Aggregator/Interfaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Reactor/src/Aggregator/Interfaces.php -------------------------------------------------------------------------------- /src/Reactor/src/Aggregator/Methods.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Reactor/src/Aggregator/Methods.php -------------------------------------------------------------------------------- /src/Reactor/src/Aggregator/Namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Reactor/src/Aggregator/Namespaces.php -------------------------------------------------------------------------------- /src/Reactor/src/Aggregator/Parameters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Reactor/src/Aggregator/Parameters.php -------------------------------------------------------------------------------- /src/Reactor/src/Aggregator/Properties.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Reactor/src/Aggregator/Properties.php -------------------------------------------------------------------------------- /src/Reactor/src/Aggregator/TraitUses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Reactor/src/Aggregator/TraitUses.php -------------------------------------------------------------------------------- /src/Reactor/src/Aggregator/Traits.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Reactor/src/Aggregator/Traits.php -------------------------------------------------------------------------------- /src/Reactor/src/ClassDeclaration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Reactor/src/ClassDeclaration.php -------------------------------------------------------------------------------- /src/Reactor/src/DeclarationInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Reactor/src/DeclarationInterface.php -------------------------------------------------------------------------------- /src/Reactor/src/EnumDeclaration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Reactor/src/EnumDeclaration.php -------------------------------------------------------------------------------- /src/Reactor/src/FileDeclaration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Reactor/src/FileDeclaration.php -------------------------------------------------------------------------------- /src/Reactor/src/FunctionDeclaration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Reactor/src/FunctionDeclaration.php -------------------------------------------------------------------------------- /src/Reactor/src/InterfaceDeclaration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Reactor/src/InterfaceDeclaration.php -------------------------------------------------------------------------------- /src/Reactor/src/NamedInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Reactor/src/NamedInterface.php -------------------------------------------------------------------------------- /src/Reactor/src/Partial/Attribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Reactor/src/Partial/Attribute.php -------------------------------------------------------------------------------- /src/Reactor/src/Partial/Constant.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Reactor/src/Partial/Constant.php -------------------------------------------------------------------------------- /src/Reactor/src/Partial/EnumCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Reactor/src/Partial/EnumCase.php -------------------------------------------------------------------------------- /src/Reactor/src/Partial/Method.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Reactor/src/Partial/Method.php -------------------------------------------------------------------------------- /src/Reactor/src/Partial/Parameter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Reactor/src/Partial/Parameter.php -------------------------------------------------------------------------------- /src/Reactor/src/Partial/PhpNamespace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Reactor/src/Partial/PhpNamespace.php -------------------------------------------------------------------------------- /src/Reactor/src/Partial/Property.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Reactor/src/Partial/Property.php -------------------------------------------------------------------------------- /src/Reactor/src/Partial/TraitUse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Reactor/src/Partial/TraitUse.php -------------------------------------------------------------------------------- /src/Reactor/src/Partial/Visibility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Reactor/src/Partial/Visibility.php -------------------------------------------------------------------------------- /src/Reactor/src/Printer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Reactor/src/Printer.php -------------------------------------------------------------------------------- /src/Reactor/src/TraitDeclaration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Reactor/src/TraitDeclaration.php -------------------------------------------------------------------------------- /src/Reactor/src/Traits/AttributeAware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Reactor/src/Traits/AttributeAware.php -------------------------------------------------------------------------------- /src/Reactor/src/Traits/ClassAware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Reactor/src/Traits/ClassAware.php -------------------------------------------------------------------------------- /src/Reactor/src/Traits/CommentAware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Reactor/src/Traits/CommentAware.php -------------------------------------------------------------------------------- /src/Reactor/src/Traits/ConstantsAware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Reactor/src/Traits/ConstantsAware.php -------------------------------------------------------------------------------- /src/Reactor/src/Traits/EnumAware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Reactor/src/Traits/EnumAware.php -------------------------------------------------------------------------------- /src/Reactor/src/Traits/FunctionLike.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Reactor/src/Traits/FunctionLike.php -------------------------------------------------------------------------------- /src/Reactor/src/Traits/InterfaceAware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Reactor/src/Traits/InterfaceAware.php -------------------------------------------------------------------------------- /src/Reactor/src/Traits/MethodsAware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Reactor/src/Traits/MethodsAware.php -------------------------------------------------------------------------------- /src/Reactor/src/Traits/NameAware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Reactor/src/Traits/NameAware.php -------------------------------------------------------------------------------- /src/Reactor/src/Traits/PropertiesAware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Reactor/src/Traits/PropertiesAware.php -------------------------------------------------------------------------------- /src/Reactor/src/Traits/TraitAware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Reactor/src/Traits/TraitAware.php -------------------------------------------------------------------------------- /src/Reactor/src/Traits/TraitsAware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Reactor/src/Traits/TraitsAware.php -------------------------------------------------------------------------------- /src/Reactor/src/Traits/VisibilityAware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Reactor/src/Traits/VisibilityAware.php -------------------------------------------------------------------------------- /src/Reactor/src/Writer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Reactor/src/Writer.php -------------------------------------------------------------------------------- /src/Router/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Router/LICENSE -------------------------------------------------------------------------------- /src/Router/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Router/README.md -------------------------------------------------------------------------------- /src/Router/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Router/composer.json -------------------------------------------------------------------------------- /src/Router/src/AbstractRoute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Router/src/AbstractRoute.php -------------------------------------------------------------------------------- /src/Router/src/Autofill.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Router/src/Autofill.php -------------------------------------------------------------------------------- /src/Router/src/ContainerizedInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Router/src/ContainerizedInterface.php -------------------------------------------------------------------------------- /src/Router/src/CoreHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Router/src/CoreHandler.php -------------------------------------------------------------------------------- /src/Router/src/Event/RouteMatched.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Router/src/Event/RouteMatched.php -------------------------------------------------------------------------------- /src/Router/src/Event/RouteNotFound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Router/src/Event/RouteNotFound.php -------------------------------------------------------------------------------- /src/Router/src/Event/Routing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Router/src/Event/Routing.php -------------------------------------------------------------------------------- /src/Router/src/Exception/RouteException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Router/src/Exception/RouteException.php -------------------------------------------------------------------------------- /src/Router/src/GroupRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Router/src/GroupRegistry.php -------------------------------------------------------------------------------- /src/Router/src/Loader/DelegatingLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Router/src/Loader/DelegatingLoader.php -------------------------------------------------------------------------------- /src/Router/src/Loader/LoaderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Router/src/Loader/LoaderInterface.php -------------------------------------------------------------------------------- /src/Router/src/Loader/LoaderRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Router/src/Loader/LoaderRegistry.php -------------------------------------------------------------------------------- /src/Router/src/Loader/PhpFileLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Router/src/Loader/PhpFileLoader.php -------------------------------------------------------------------------------- /src/Router/src/PipelineFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Router/src/PipelineFactory.php -------------------------------------------------------------------------------- /src/Router/src/Route.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Router/src/Route.php -------------------------------------------------------------------------------- /src/Router/src/RouteCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Router/src/RouteCollection.php -------------------------------------------------------------------------------- /src/Router/src/RouteGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Router/src/RouteGroup.php -------------------------------------------------------------------------------- /src/Router/src/RouteInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Router/src/RouteInterface.php -------------------------------------------------------------------------------- /src/Router/src/Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Router/src/Router.php -------------------------------------------------------------------------------- /src/Router/src/RouterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Router/src/RouterInterface.php -------------------------------------------------------------------------------- /src/Router/src/Target/AbstractTarget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Router/src/Target/AbstractTarget.php -------------------------------------------------------------------------------- /src/Router/src/Target/Action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Router/src/Target/Action.php -------------------------------------------------------------------------------- /src/Router/src/Target/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Router/src/Target/Controller.php -------------------------------------------------------------------------------- /src/Router/src/Target/Group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Router/src/Target/Group.php -------------------------------------------------------------------------------- /src/Router/src/Target/Namespaced.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Router/src/Target/Namespaced.php -------------------------------------------------------------------------------- /src/Router/src/TargetInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Router/src/TargetInterface.php -------------------------------------------------------------------------------- /src/Router/src/Traits/ContainerTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Router/src/Traits/ContainerTrait.php -------------------------------------------------------------------------------- /src/Router/src/Traits/DefaultsTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Router/src/Traits/DefaultsTrait.php -------------------------------------------------------------------------------- /src/Router/src/Traits/PipelineTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Router/src/Traits/PipelineTrait.php -------------------------------------------------------------------------------- /src/Router/src/Traits/VerbsTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Router/src/Traits/VerbsTrait.php -------------------------------------------------------------------------------- /src/Router/src/UriHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Router/src/UriHandler.php -------------------------------------------------------------------------------- /src/Scaffolder/.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Scaffolder/.scrutinizer.yml -------------------------------------------------------------------------------- /src/Scaffolder/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Scaffolder/LICENSE -------------------------------------------------------------------------------- /src/Scaffolder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Scaffolder/README.md -------------------------------------------------------------------------------- /src/Scaffolder/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Scaffolder/composer.json -------------------------------------------------------------------------------- /src/Scaffolder/src/Command/InfoCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Scaffolder/src/Command/InfoCommand.php -------------------------------------------------------------------------------- /src/Scaffolder/src/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Scaffolder/src/helpers.php -------------------------------------------------------------------------------- /src/Security/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Security/LICENSE -------------------------------------------------------------------------------- /src/Security/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Security/README.md -------------------------------------------------------------------------------- /src/Security/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Security/composer.json -------------------------------------------------------------------------------- /src/Security/src/Actor/Actor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Security/src/Actor/Actor.php -------------------------------------------------------------------------------- /src/Security/src/Actor/Guest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Security/src/Actor/Guest.php -------------------------------------------------------------------------------- /src/Security/src/Actor/NullActor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Security/src/Actor/NullActor.php -------------------------------------------------------------------------------- /src/Security/src/ActorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Security/src/ActorInterface.php -------------------------------------------------------------------------------- /src/Security/src/Guard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Security/src/Guard.php -------------------------------------------------------------------------------- /src/Security/src/GuardInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Security/src/GuardInterface.php -------------------------------------------------------------------------------- /src/Security/src/Matcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Security/src/Matcher.php -------------------------------------------------------------------------------- /src/Security/src/PermissionManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Security/src/PermissionManager.php -------------------------------------------------------------------------------- /src/Security/src/PermissionsInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Security/src/PermissionsInterface.php -------------------------------------------------------------------------------- /src/Security/src/Rule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Security/src/Rule.php -------------------------------------------------------------------------------- /src/Security/src/Rule/AllowRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Security/src/Rule/AllowRule.php -------------------------------------------------------------------------------- /src/Security/src/Rule/CallableRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Security/src/Rule/CallableRule.php -------------------------------------------------------------------------------- /src/Security/src/Rule/CompositeRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Security/src/Rule/CompositeRule.php -------------------------------------------------------------------------------- /src/Security/src/Rule/ForbidRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Security/src/Rule/ForbidRule.php -------------------------------------------------------------------------------- /src/Security/src/RuleInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Security/src/RuleInterface.php -------------------------------------------------------------------------------- /src/Security/src/RuleManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Security/src/RuleManager.php -------------------------------------------------------------------------------- /src/Security/src/RulesInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Security/src/RulesInterface.php -------------------------------------------------------------------------------- /src/Security/src/Traits/GuardedTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Security/src/Traits/GuardedTrait.php -------------------------------------------------------------------------------- /src/SendIt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/SendIt/LICENSE -------------------------------------------------------------------------------- /src/SendIt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/SendIt/README.md -------------------------------------------------------------------------------- /src/SendIt/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/SendIt/composer.json -------------------------------------------------------------------------------- /src/SendIt/src/Config/MailerConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/SendIt/src/Config/MailerConfig.php -------------------------------------------------------------------------------- /src/SendIt/src/Event/MessageNotSent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/SendIt/src/Event/MessageNotSent.php -------------------------------------------------------------------------------- /src/SendIt/src/Event/MessageSent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/SendIt/src/Event/MessageSent.php -------------------------------------------------------------------------------- /src/SendIt/src/Event/PostRender.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/SendIt/src/Event/PostRender.php -------------------------------------------------------------------------------- /src/SendIt/src/Event/PreRender.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/SendIt/src/Event/PreRender.php -------------------------------------------------------------------------------- /src/SendIt/src/Listener/LoggerListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/SendIt/src/Listener/LoggerListener.php -------------------------------------------------------------------------------- /src/SendIt/src/MailJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/SendIt/src/MailJob.php -------------------------------------------------------------------------------- /src/SendIt/src/MailQueue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/SendIt/src/MailQueue.php -------------------------------------------------------------------------------- /src/SendIt/src/MessageSerializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/SendIt/src/MessageSerializer.php -------------------------------------------------------------------------------- /src/SendIt/src/Renderer/ViewRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/SendIt/src/Renderer/ViewRenderer.php -------------------------------------------------------------------------------- /src/SendIt/src/RendererInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/SendIt/src/RendererInterface.php -------------------------------------------------------------------------------- /src/SendIt/src/TransportResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/SendIt/src/TransportResolver.php -------------------------------------------------------------------------------- /src/SendIt/views/builder.dark.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/SendIt/views/builder.dark.php -------------------------------------------------------------------------------- /src/SendIt/views/bundle.dark.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/SendIt/views/bundle.dark.php -------------------------------------------------------------------------------- /src/SendIt/views/partial/attach.dark.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/SendIt/views/partial/attach.dark.php -------------------------------------------------------------------------------- /src/SendIt/views/partial/embed.dark.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/SendIt/views/partial/embed.dark.php -------------------------------------------------------------------------------- /src/SendIt/views/partial/image.dark.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/SendIt/views/partial/image.dark.php -------------------------------------------------------------------------------- /src/Serializer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Serializer/LICENSE -------------------------------------------------------------------------------- /src/Serializer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Serializer/README.md -------------------------------------------------------------------------------- /src/Serializer/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Serializer/composer.json -------------------------------------------------------------------------------- /src/Serializer/src/SerializerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Serializer/src/SerializerInterface.php -------------------------------------------------------------------------------- /src/Serializer/src/SerializerManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Serializer/src/SerializerManager.php -------------------------------------------------------------------------------- /src/Serializer/src/SerializerRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Serializer/src/SerializerRegistry.php -------------------------------------------------------------------------------- /src/Session/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Session/LICENSE -------------------------------------------------------------------------------- /src/Session/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Session/README.md -------------------------------------------------------------------------------- /src/Session/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Session/composer.json -------------------------------------------------------------------------------- /src/Session/src/Config/SessionConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Session/src/Config/SessionConfig.php -------------------------------------------------------------------------------- /src/Session/src/Handler/CacheHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Session/src/Handler/CacheHandler.php -------------------------------------------------------------------------------- /src/Session/src/Handler/FileHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Session/src/Handler/FileHandler.php -------------------------------------------------------------------------------- /src/Session/src/Handler/NullHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Session/src/Handler/NullHandler.php -------------------------------------------------------------------------------- /src/Session/src/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Session/src/Session.php -------------------------------------------------------------------------------- /src/Session/src/SessionFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Session/src/SessionFactory.php -------------------------------------------------------------------------------- /src/Session/src/SessionFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Session/src/SessionFactoryInterface.php -------------------------------------------------------------------------------- /src/Session/src/SessionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Session/src/SessionInterface.php -------------------------------------------------------------------------------- /src/Session/src/SessionSection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Session/src/SessionSection.php -------------------------------------------------------------------------------- /src/Session/src/SessionSectionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Session/src/SessionSectionInterface.php -------------------------------------------------------------------------------- /src/Snapshots/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Snapshots/LICENSE -------------------------------------------------------------------------------- /src/Snapshots/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Snapshots/README.md -------------------------------------------------------------------------------- /src/Snapshots/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Snapshots/composer.json -------------------------------------------------------------------------------- /src/Snapshots/src/FileSnapshot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Snapshots/src/FileSnapshot.php -------------------------------------------------------------------------------- /src/Snapshots/src/Snapshot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Snapshots/src/Snapshot.php -------------------------------------------------------------------------------- /src/Snapshots/src/SnapshotInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Snapshots/src/SnapshotInterface.php -------------------------------------------------------------------------------- /src/Snapshots/src/SnapshotterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Snapshots/src/SnapshotterInterface.php -------------------------------------------------------------------------------- /src/Snapshots/src/StorageSnapshot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Snapshots/src/StorageSnapshot.php -------------------------------------------------------------------------------- /src/Stempler/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Stempler/LICENSE -------------------------------------------------------------------------------- /src/Stempler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Stempler/README.md -------------------------------------------------------------------------------- /src/Stempler/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Stempler/composer.json -------------------------------------------------------------------------------- /src/Stempler/src/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Stempler/src/Builder.php -------------------------------------------------------------------------------- /src/Stempler/src/Compiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Stempler/src/Compiler.php -------------------------------------------------------------------------------- /src/Stempler/src/Compiler/Location.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Stempler/src/Compiler/Location.php -------------------------------------------------------------------------------- /src/Stempler/src/Compiler/Result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Stempler/src/Compiler/Result.php -------------------------------------------------------------------------------- /src/Stempler/src/Compiler/SourceMap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Stempler/src/Compiler/SourceMap.php -------------------------------------------------------------------------------- /src/Stempler/src/Directive/PHPDirective.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Stempler/src/Directive/PHPDirective.php -------------------------------------------------------------------------------- /src/Stempler/src/Lexer/Buffer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Stempler/src/Lexer/Buffer.php -------------------------------------------------------------------------------- /src/Stempler/src/Lexer/Byte.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Stempler/src/Lexer/Byte.php -------------------------------------------------------------------------------- /src/Stempler/src/Lexer/GrammarInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Stempler/src/Lexer/GrammarInterface.php -------------------------------------------------------------------------------- /src/Stempler/src/Lexer/Lexer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Stempler/src/Lexer/Lexer.php -------------------------------------------------------------------------------- /src/Stempler/src/Lexer/StreamInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Stempler/src/Lexer/StreamInterface.php -------------------------------------------------------------------------------- /src/Stempler/src/Lexer/StringStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Stempler/src/Lexer/StringStream.php -------------------------------------------------------------------------------- /src/Stempler/src/Lexer/Token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Stempler/src/Lexer/Token.php -------------------------------------------------------------------------------- /src/Stempler/src/Loader/DirectoryLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Stempler/src/Loader/DirectoryLoader.php -------------------------------------------------------------------------------- /src/Stempler/src/Loader/LoaderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Stempler/src/Loader/LoaderInterface.php -------------------------------------------------------------------------------- /src/Stempler/src/Loader/Source.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Stempler/src/Loader/Source.php -------------------------------------------------------------------------------- /src/Stempler/src/Loader/StringLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Stempler/src/Loader/StringLoader.php -------------------------------------------------------------------------------- /src/Stempler/src/Node/Aggregate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Stempler/src/Node/Aggregate.php -------------------------------------------------------------------------------- /src/Stempler/src/Node/Block.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Stempler/src/Node/Block.php -------------------------------------------------------------------------------- /src/Stempler/src/Node/Dynamic/Directive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Stempler/src/Node/Dynamic/Directive.php -------------------------------------------------------------------------------- /src/Stempler/src/Node/Dynamic/Output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Stempler/src/Node/Dynamic/Output.php -------------------------------------------------------------------------------- /src/Stempler/src/Node/HTML/Attr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Stempler/src/Node/HTML/Attr.php -------------------------------------------------------------------------------- /src/Stempler/src/Node/HTML/Nil.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Stempler/src/Node/HTML/Nil.php -------------------------------------------------------------------------------- /src/Stempler/src/Node/HTML/Tag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Stempler/src/Node/HTML/Tag.php -------------------------------------------------------------------------------- /src/Stempler/src/Node/HTML/Verbatim.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Stempler/src/Node/HTML/Verbatim.php -------------------------------------------------------------------------------- /src/Stempler/src/Node/Hidden.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Stempler/src/Node/Hidden.php -------------------------------------------------------------------------------- /src/Stempler/src/Node/Inline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Stempler/src/Node/Inline.php -------------------------------------------------------------------------------- /src/Stempler/src/Node/Mixin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Stempler/src/Node/Mixin.php -------------------------------------------------------------------------------- /src/Stempler/src/Node/NodeInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Stempler/src/Node/NodeInterface.php -------------------------------------------------------------------------------- /src/Stempler/src/Node/PHP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Stempler/src/Node/PHP.php -------------------------------------------------------------------------------- /src/Stempler/src/Node/Raw.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Stempler/src/Node/Raw.php -------------------------------------------------------------------------------- /src/Stempler/src/Node/Template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Stempler/src/Node/Template.php -------------------------------------------------------------------------------- /src/Stempler/src/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Stempler/src/Parser.php -------------------------------------------------------------------------------- /src/Stempler/src/Parser/Assembler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Stempler/src/Parser/Assembler.php -------------------------------------------------------------------------------- /src/Stempler/src/Parser/Context.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Stempler/src/Parser/Context.php -------------------------------------------------------------------------------- /src/Stempler/src/Parser/SyntaxInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Stempler/src/Parser/SyntaxInterface.php -------------------------------------------------------------------------------- /src/Stempler/src/Transform/BlockClaims.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Stempler/src/Transform/BlockClaims.php -------------------------------------------------------------------------------- /src/Stempler/src/Transform/BlockFetcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Stempler/src/Transform/BlockFetcher.php -------------------------------------------------------------------------------- /src/Stempler/src/Transform/Merger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Stempler/src/Transform/Merger.php -------------------------------------------------------------------------------- /src/Stempler/src/Transform/QuotedValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Stempler/src/Transform/QuotedValue.php -------------------------------------------------------------------------------- /src/Stempler/src/Traverser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Stempler/src/Traverser.php -------------------------------------------------------------------------------- /src/Stempler/src/VisitorContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Stempler/src/VisitorContext.php -------------------------------------------------------------------------------- /src/Stempler/src/VisitorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Stempler/src/VisitorInterface.php -------------------------------------------------------------------------------- /src/Stempler/src/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Stempler/src/helpers.php -------------------------------------------------------------------------------- /src/Storage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Storage/LICENSE -------------------------------------------------------------------------------- /src/Storage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Storage/README.md -------------------------------------------------------------------------------- /src/Storage/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Storage/composer.json -------------------------------------------------------------------------------- /src/Storage/src/Bucket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Storage/src/Bucket.php -------------------------------------------------------------------------------- /src/Storage/src/Bucket/ReadableTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Storage/src/Bucket/ReadableTrait.php -------------------------------------------------------------------------------- /src/Storage/src/Bucket/WritableTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Storage/src/Bucket/WritableTrait.php -------------------------------------------------------------------------------- /src/Storage/src/BucketFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Storage/src/BucketFactory.php -------------------------------------------------------------------------------- /src/Storage/src/BucketFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Storage/src/BucketFactoryInterface.php -------------------------------------------------------------------------------- /src/Storage/src/BucketInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Storage/src/BucketInterface.php -------------------------------------------------------------------------------- /src/Storage/src/Config/StorageConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Storage/src/Config/StorageConfig.php -------------------------------------------------------------------------------- /src/Storage/src/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Storage/src/File.php -------------------------------------------------------------------------------- /src/Storage/src/File/EntryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Storage/src/File/EntryInterface.php -------------------------------------------------------------------------------- /src/Storage/src/File/ReadableInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Storage/src/File/ReadableInterface.php -------------------------------------------------------------------------------- /src/Storage/src/File/ReadableTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Storage/src/File/ReadableTrait.php -------------------------------------------------------------------------------- /src/Storage/src/File/UriResolvableTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Storage/src/File/UriResolvableTrait.php -------------------------------------------------------------------------------- /src/Storage/src/File/WritableInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Storage/src/File/WritableInterface.php -------------------------------------------------------------------------------- /src/Storage/src/File/WritableTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Storage/src/File/WritableTrait.php -------------------------------------------------------------------------------- /src/Storage/src/FileInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Storage/src/FileInterface.php -------------------------------------------------------------------------------- /src/Storage/src/MutableStorageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Storage/src/MutableStorageInterface.php -------------------------------------------------------------------------------- /src/Storage/src/Storage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Storage/src/Storage.php -------------------------------------------------------------------------------- /src/Storage/src/Storage/ReadableTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Storage/src/Storage/ReadableTrait.php -------------------------------------------------------------------------------- /src/Storage/src/Storage/WritableTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Storage/src/Storage/WritableTrait.php -------------------------------------------------------------------------------- /src/Storage/src/StorageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Storage/src/StorageInterface.php -------------------------------------------------------------------------------- /src/Storage/src/Visibility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Storage/src/Visibility.php -------------------------------------------------------------------------------- /src/Streams/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Streams/LICENSE -------------------------------------------------------------------------------- /src/Streams/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Streams/README.md -------------------------------------------------------------------------------- /src/Streams/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Streams/composer.json -------------------------------------------------------------------------------- /src/Streams/src/StreamWrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Streams/src/StreamWrapper.php -------------------------------------------------------------------------------- /src/Streams/src/StreamableInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Streams/src/StreamableInterface.php -------------------------------------------------------------------------------- /src/Telemetry/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Telemetry/LICENSE -------------------------------------------------------------------------------- /src/Telemetry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Telemetry/README.md -------------------------------------------------------------------------------- /src/Telemetry/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Telemetry/composer.json -------------------------------------------------------------------------------- /src/Telemetry/src/AbstractTracer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Telemetry/src/AbstractTracer.php -------------------------------------------------------------------------------- /src/Telemetry/src/Clock/SystemClock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Telemetry/src/Clock/SystemClock.php -------------------------------------------------------------------------------- /src/Telemetry/src/ClockInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Telemetry/src/ClockInterface.php -------------------------------------------------------------------------------- /src/Telemetry/src/LogTracer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Telemetry/src/LogTracer.php -------------------------------------------------------------------------------- /src/Telemetry/src/LogTracerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Telemetry/src/LogTracerFactory.php -------------------------------------------------------------------------------- /src/Telemetry/src/NullTracer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Telemetry/src/NullTracer.php -------------------------------------------------------------------------------- /src/Telemetry/src/NullTracerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Telemetry/src/NullTracerFactory.php -------------------------------------------------------------------------------- /src/Telemetry/src/Span.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Telemetry/src/Span.php -------------------------------------------------------------------------------- /src/Telemetry/src/Span/Status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Telemetry/src/Span/Status.php -------------------------------------------------------------------------------- /src/Telemetry/src/SpanInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Telemetry/src/SpanInterface.php -------------------------------------------------------------------------------- /src/Telemetry/src/TraceKind.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Telemetry/src/TraceKind.php -------------------------------------------------------------------------------- /src/Telemetry/src/TracerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Telemetry/src/TracerInterface.php -------------------------------------------------------------------------------- /src/Tokenizer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Tokenizer/LICENSE -------------------------------------------------------------------------------- /src/Tokenizer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Tokenizer/README.md -------------------------------------------------------------------------------- /src/Tokenizer/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Tokenizer/composer.json -------------------------------------------------------------------------------- /src/Tokenizer/src/AbstractLocator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Tokenizer/src/AbstractLocator.php -------------------------------------------------------------------------------- /src/Tokenizer/src/Attribute/TargetClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Tokenizer/src/Attribute/TargetClass.php -------------------------------------------------------------------------------- /src/Tokenizer/src/ClassLocator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Tokenizer/src/ClassLocator.php -------------------------------------------------------------------------------- /src/Tokenizer/src/ClassLocatorInjector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Tokenizer/src/ClassLocatorInjector.php -------------------------------------------------------------------------------- /src/Tokenizer/src/ClassesInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Tokenizer/src/ClassesInterface.php -------------------------------------------------------------------------------- /src/Tokenizer/src/EnumLocator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Tokenizer/src/EnumLocator.php -------------------------------------------------------------------------------- /src/Tokenizer/src/EnumLocatorInjector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Tokenizer/src/EnumLocatorInjector.php -------------------------------------------------------------------------------- /src/Tokenizer/src/EnumsInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Tokenizer/src/EnumsInterface.php -------------------------------------------------------------------------------- /src/Tokenizer/src/InterfaceLocator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Tokenizer/src/InterfaceLocator.php -------------------------------------------------------------------------------- /src/Tokenizer/src/InterfacesInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Tokenizer/src/InterfacesInterface.php -------------------------------------------------------------------------------- /src/Tokenizer/src/InvocationLocator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Tokenizer/src/InvocationLocator.php -------------------------------------------------------------------------------- /src/Tokenizer/src/InvocationsInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Tokenizer/src/InvocationsInterface.php -------------------------------------------------------------------------------- /src/Tokenizer/src/ScopedClassLocator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Tokenizer/src/ScopedClassLocator.php -------------------------------------------------------------------------------- /src/Tokenizer/src/ScopedEnumLocator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Tokenizer/src/ScopedEnumLocator.php -------------------------------------------------------------------------------- /src/Tokenizer/src/ScopedEnumsInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Tokenizer/src/ScopedEnumsInterface.php -------------------------------------------------------------------------------- /src/Tokenizer/src/Tokenizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Tokenizer/src/Tokenizer.php -------------------------------------------------------------------------------- /src/Tokenizer/src/Traits/TargetTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Tokenizer/src/Traits/TargetTrait.php -------------------------------------------------------------------------------- /src/Translator/.gitattributes: -------------------------------------------------------------------------------- 1 | /tests export-ignore -------------------------------------------------------------------------------- /src/Translator/.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Translator/.github/FUNDING.yml -------------------------------------------------------------------------------- /src/Translator/.github/workflows/psalm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Translator/.github/workflows/psalm.yml -------------------------------------------------------------------------------- /src/Translator/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | .env 3 | composer.lock 4 | vendor/ 5 | *.db 6 | clover.xml -------------------------------------------------------------------------------- /src/Translator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Translator/LICENSE -------------------------------------------------------------------------------- /src/Translator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Translator/README.md -------------------------------------------------------------------------------- /src/Translator/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Translator/composer.json -------------------------------------------------------------------------------- /src/Translator/src/Catalogue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Translator/src/Catalogue.php -------------------------------------------------------------------------------- /src/Translator/src/Catalogue/NullCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Translator/src/Catalogue/NullCache.php -------------------------------------------------------------------------------- /src/Translator/src/CatalogueInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Translator/src/CatalogueInterface.php -------------------------------------------------------------------------------- /src/Translator/src/Event/LocaleUpdated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Translator/src/Event/LocaleUpdated.php -------------------------------------------------------------------------------- /src/Translator/src/Indexer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Translator/src/Indexer.php -------------------------------------------------------------------------------- /src/Translator/src/Matcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Translator/src/Matcher.php -------------------------------------------------------------------------------- /src/Translator/src/Translator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Translator/src/Translator.php -------------------------------------------------------------------------------- /src/Translator/src/TranslatorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Translator/src/TranslatorInterface.php -------------------------------------------------------------------------------- /src/Translator/src/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Translator/src/helpers.php -------------------------------------------------------------------------------- /src/Validation/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Validation/LICENSE -------------------------------------------------------------------------------- /src/Validation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Validation/README.md -------------------------------------------------------------------------------- /src/Validation/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Validation/composer.json -------------------------------------------------------------------------------- /src/Validation/src/ValidationInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Validation/src/ValidationInterface.php -------------------------------------------------------------------------------- /src/Validation/src/ValidationProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Validation/src/ValidationProvider.php -------------------------------------------------------------------------------- /src/Validation/src/ValidatorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Validation/src/ValidatorInterface.php -------------------------------------------------------------------------------- /src/Views/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Views/LICENSE -------------------------------------------------------------------------------- /src/Views/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Views/README.md -------------------------------------------------------------------------------- /src/Views/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Views/composer.json -------------------------------------------------------------------------------- /src/Views/src/Config/ViewsConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Views/src/Config/ViewsConfig.php -------------------------------------------------------------------------------- /src/Views/src/Context/ValueDependency.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Views/src/Context/ValueDependency.php -------------------------------------------------------------------------------- /src/Views/src/ContextGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Views/src/ContextGenerator.php -------------------------------------------------------------------------------- /src/Views/src/ContextInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Views/src/ContextInterface.php -------------------------------------------------------------------------------- /src/Views/src/DependencyInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Views/src/DependencyInterface.php -------------------------------------------------------------------------------- /src/Views/src/Engine/AbstractEngine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Views/src/Engine/AbstractEngine.php -------------------------------------------------------------------------------- /src/Views/src/Engine/Native/NativeView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Views/src/Engine/Native/NativeView.php -------------------------------------------------------------------------------- /src/Views/src/EngineInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Views/src/EngineInterface.php -------------------------------------------------------------------------------- /src/Views/src/Event/ViewNotFound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Views/src/Event/ViewNotFound.php -------------------------------------------------------------------------------- /src/Views/src/Exception/CacheException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Views/src/Exception/CacheException.php -------------------------------------------------------------------------------- /src/Views/src/Exception/EngineException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Views/src/Exception/EngineException.php -------------------------------------------------------------------------------- /src/Views/src/Exception/LoaderException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Views/src/Exception/LoaderException.php -------------------------------------------------------------------------------- /src/Views/src/Exception/PathException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Views/src/Exception/PathException.php -------------------------------------------------------------------------------- /src/Views/src/Exception/RenderException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Views/src/Exception/RenderException.php -------------------------------------------------------------------------------- /src/Views/src/Exception/ViewException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Views/src/Exception/ViewException.php -------------------------------------------------------------------------------- /src/Views/src/GlobalVariables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Views/src/GlobalVariables.php -------------------------------------------------------------------------------- /src/Views/src/GlobalVariablesInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Views/src/GlobalVariablesInterface.php -------------------------------------------------------------------------------- /src/Views/src/Loader/PathParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Views/src/Loader/PathParser.php -------------------------------------------------------------------------------- /src/Views/src/Loader/ViewPath.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Views/src/Loader/ViewPath.php -------------------------------------------------------------------------------- /src/Views/src/LoaderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Views/src/LoaderInterface.php -------------------------------------------------------------------------------- /src/Views/src/ProcessorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Views/src/ProcessorInterface.php -------------------------------------------------------------------------------- /src/Views/src/Traits/ProcessorTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Views/src/Traits/ProcessorTrait.php -------------------------------------------------------------------------------- /src/Views/src/ViewCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Views/src/ViewCache.php -------------------------------------------------------------------------------- /src/Views/src/ViewContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Views/src/ViewContext.php -------------------------------------------------------------------------------- /src/Views/src/ViewInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Views/src/ViewInterface.php -------------------------------------------------------------------------------- /src/Views/src/ViewLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Views/src/ViewLoader.php -------------------------------------------------------------------------------- /src/Views/src/ViewManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Views/src/ViewManager.php -------------------------------------------------------------------------------- /src/Views/src/ViewSource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Views/src/ViewSource.php -------------------------------------------------------------------------------- /src/Views/src/ViewsInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spiral/framework/HEAD/src/Views/src/ViewsInterface.php --------------------------------------------------------------------------------