├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json ├── config-stubs └── app.php ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── cors.php ├── database.php ├── filesystems.php ├── hashing.php ├── logging.php ├── mail.php ├── queue.php ├── services.php ├── session.php └── view.php └── src └── Illuminate ├── Auth ├── Access │ ├── AuthorizationException.php │ ├── Events │ │ └── GateEvaluated.php │ ├── Gate.php │ ├── HandlesAuthorization.php │ └── Response.php ├── AuthManager.php ├── AuthServiceProvider.php ├── Authenticatable.php ├── AuthenticationException.php ├── Console │ ├── ClearResetsCommand.php │ └── stubs │ │ └── make │ │ └── views │ │ └── layouts │ │ └── app.stub ├── CreatesUserProviders.php ├── DatabaseUserProvider.php ├── EloquentUserProvider.php ├── Events │ ├── Attempting.php │ ├── Authenticated.php │ ├── CurrentDeviceLogout.php │ ├── Failed.php │ ├── Lockout.php │ ├── Login.php │ ├── Logout.php │ ├── OtherDeviceLogout.php │ ├── PasswordReset.php │ ├── PasswordResetLinkSent.php │ ├── Registered.php │ ├── Validated.php │ └── Verified.php ├── GenericUser.php ├── GuardHelpers.php ├── LICENSE.md ├── Listeners │ └── SendEmailVerificationNotification.php ├── Middleware │ ├── Authenticate.php │ ├── AuthenticateWithBasicAuth.php │ ├── Authorize.php │ ├── EnsureEmailIsVerified.php │ ├── RedirectIfAuthenticated.php │ └── RequirePassword.php ├── MustVerifyEmail.php ├── Notifications │ ├── ResetPassword.php │ └── VerifyEmail.php ├── Passwords │ ├── CanResetPassword.php │ ├── DatabaseTokenRepository.php │ ├── PasswordBroker.php │ ├── PasswordBrokerManager.php │ ├── PasswordResetServiceProvider.php │ └── TokenRepositoryInterface.php ├── Recaller.php ├── RequestGuard.php ├── SessionGuard.php ├── TokenGuard.php └── composer.json ├── Broadcasting ├── AnonymousEvent.php ├── BroadcastController.php ├── BroadcastEvent.php ├── BroadcastException.php ├── BroadcastManager.php ├── BroadcastServiceProvider.php ├── Broadcasters │ ├── AblyBroadcaster.php │ ├── Broadcaster.php │ ├── LogBroadcaster.php │ ├── NullBroadcaster.php │ ├── PusherBroadcaster.php │ ├── RedisBroadcaster.php │ └── UsePusherChannelConventions.php ├── Channel.php ├── EncryptedPrivateChannel.php ├── InteractsWithBroadcasting.php ├── InteractsWithSockets.php ├── LICENSE.md ├── PendingBroadcast.php ├── PresenceChannel.php ├── PrivateChannel.php ├── UniqueBroadcastEvent.php └── composer.json ├── Bus ├── Batch.php ├── BatchFactory.php ├── BatchRepository.php ├── Batchable.php ├── BusServiceProvider.php ├── ChainedBatch.php ├── DatabaseBatchRepository.php ├── Dispatcher.php ├── DynamoBatchRepository.php ├── Events │ └── BatchDispatched.php ├── LICENSE.md ├── PendingBatch.php ├── PrunableBatchRepository.php ├── Queueable.php ├── UniqueLock.php ├── UpdatedBatchJobCounts.php └── composer.json ├── Cache ├── ApcStore.php ├── ApcWrapper.php ├── ArrayLock.php ├── ArrayStore.php ├── CacheLock.php ├── CacheManager.php ├── CacheServiceProvider.php ├── Console │ ├── CacheTableCommand.php │ ├── ClearCommand.php │ ├── ForgetCommand.php │ ├── PruneStaleTagsCommand.php │ └── stubs │ │ └── cache.stub ├── DatabaseLock.php ├── DatabaseStore.php ├── DynamoDbLock.php ├── DynamoDbStore.php ├── Events │ ├── CacheEvent.php │ ├── CacheHit.php │ ├── CacheMissed.php │ ├── ForgettingKey.php │ ├── KeyForgetFailed.php │ ├── KeyForgotten.php │ ├── KeyWriteFailed.php │ ├── KeyWritten.php │ ├── RetrievingKey.php │ ├── RetrievingManyKeys.php │ ├── WritingKey.php │ └── WritingManyKeys.php ├── FileLock.php ├── FileStore.php ├── HasCacheLock.php ├── LICENSE.md ├── Lock.php ├── LuaScripts.php ├── MemcachedConnector.php ├── MemcachedLock.php ├── MemcachedStore.php ├── NoLock.php ├── NullStore.php ├── PhpRedisLock.php ├── RateLimiter.php ├── RateLimiting │ ├── GlobalLimit.php │ ├── Limit.php │ └── Unlimited.php ├── RedisLock.php ├── RedisStore.php ├── RedisTagSet.php ├── RedisTaggedCache.php ├── Repository.php ├── RetrievesMultipleKeys.php ├── TagSet.php ├── TaggableStore.php ├── TaggedCache.php └── composer.json ├── Collections ├── Arr.php ├── Collection.php ├── Enumerable.php ├── HigherOrderCollectionProxy.php ├── ItemNotFoundException.php ├── LICENSE.md ├── LazyCollection.php ├── MultipleItemsFoundException.php ├── Traits │ └── EnumeratesValues.php ├── composer.json └── helpers.php ├── Conditionable ├── HigherOrderWhenProxy.php ├── LICENSE.md ├── Traits │ └── Conditionable.php └── composer.json ├── Config ├── LICENSE.md ├── Repository.php └── composer.json ├── Console ├── Application.php ├── BufferedConsoleOutput.php ├── CacheCommandMutex.php ├── Command.php ├── CommandMutex.php ├── Concerns │ ├── CallsCommands.php │ ├── ConfiguresPrompts.php │ ├── CreatesMatchingTest.php │ ├── HasParameters.php │ ├── InteractsWithIO.php │ ├── InteractsWithSignals.php │ └── PromptsForMissingInput.php ├── ConfirmableTrait.php ├── ContainerCommandLoader.php ├── Contracts │ └── NewLineAware.php ├── Events │ ├── ArtisanStarting.php │ ├── CommandFinished.php │ ├── CommandStarting.php │ ├── ScheduledBackgroundTaskFinished.php │ ├── ScheduledTaskFailed.php │ ├── ScheduledTaskFinished.php │ ├── ScheduledTaskSkipped.php │ └── ScheduledTaskStarting.php ├── GeneratorCommand.php ├── LICENSE.md ├── ManuallyFailedException.php ├── MigrationGeneratorCommand.php ├── OutputStyle.php ├── Parser.php ├── Prohibitable.php ├── PromptValidationException.php ├── QuestionHelper.php ├── Scheduling │ ├── CacheAware.php │ ├── CacheEventMutex.php │ ├── CacheSchedulingMutex.php │ ├── CallbackEvent.php │ ├── CommandBuilder.php │ ├── Event.php │ ├── EventMutex.php │ ├── ManagesFrequencies.php │ ├── Schedule.php │ ├── ScheduleClearCacheCommand.php │ ├── ScheduleFinishCommand.php │ ├── ScheduleInterruptCommand.php │ ├── ScheduleListCommand.php │ ├── ScheduleRunCommand.php │ ├── ScheduleTestCommand.php │ ├── ScheduleWorkCommand.php │ └── SchedulingMutex.php ├── Signals.php ├── View │ └── Components │ │ ├── Alert.php │ │ ├── Ask.php │ │ ├── AskWithCompletion.php │ │ ├── BulletList.php │ │ ├── Choice.php │ │ ├── Component.php │ │ ├── Confirm.php │ │ ├── Error.php │ │ ├── Factory.php │ │ ├── Info.php │ │ ├── Line.php │ │ ├── Mutators │ │ ├── EnsureDynamicContentIsHighlighted.php │ │ ├── EnsureNoPunctuation.php │ │ ├── EnsurePunctuation.php │ │ └── EnsureRelativePaths.php │ │ ├── Secret.php │ │ ├── Success.php │ │ ├── Task.php │ │ ├── TwoColumnDetail.php │ │ └── Warn.php ├── composer.json └── resources │ └── views │ └── components │ ├── alert.php │ ├── bullet-list.php │ ├── line.php │ └── two-column-detail.php ├── Container ├── Attributes │ └── Config.php ├── BoundMethod.php ├── Container.php ├── ContextualBindingBuilder.php ├── EntryNotFoundException.php ├── LICENSE.md ├── RewindableGenerator.php ├── Util.php └── composer.json ├── Contracts ├── Auth │ ├── Access │ │ ├── Authorizable.php │ │ └── Gate.php │ ├── Authenticatable.php │ ├── CanResetPassword.php │ ├── Factory.php │ ├── Guard.php │ ├── Middleware │ │ └── AuthenticatesRequests.php │ ├── MustVerifyEmail.php │ ├── PasswordBroker.php │ ├── PasswordBrokerFactory.php │ ├── StatefulGuard.php │ ├── SupportsBasicAuth.php │ └── UserProvider.php ├── Broadcasting │ ├── Broadcaster.php │ ├── Factory.php │ ├── HasBroadcastChannel.php │ ├── ShouldBeUnique.php │ ├── ShouldBroadcast.php │ └── ShouldBroadcastNow.php ├── Bus │ ├── Dispatcher.php │ └── QueueingDispatcher.php ├── Cache │ ├── Factory.php │ ├── Lock.php │ ├── LockProvider.php │ ├── LockTimeoutException.php │ ├── Repository.php │ └── Store.php ├── Config │ └── Repository.php ├── Console │ ├── Application.php │ ├── Isolatable.php │ ├── Kernel.php │ └── PromptsForMissingInput.php ├── Container │ ├── BindingResolutionException.php │ ├── CircularDependencyException.php │ ├── Container.php │ ├── ContextualAttribute.php │ └── ContextualBindingBuilder.php ├── Cookie │ ├── Factory.php │ └── QueueingFactory.php ├── Database │ ├── Eloquent │ │ ├── Builder.php │ │ ├── Castable.php │ │ ├── CastsAttributes.php │ │ ├── CastsInboundAttributes.php │ │ ├── DeviatesCastableAttributes.php │ │ ├── SerializesCastableAttributes.php │ │ └── SupportsPartialRelations.php │ ├── Events │ │ └── MigrationEvent.php │ ├── ModelIdentifier.php │ └── Query │ │ ├── Builder.php │ │ ├── ConditionExpression.php │ │ └── Expression.php ├── Debug │ ├── ExceptionHandler.php │ └── ShouldntReport.php ├── Encryption │ ├── DecryptException.php │ ├── EncryptException.php │ ├── Encrypter.php │ └── StringEncrypter.php ├── Events │ ├── Dispatcher.php │ ├── ShouldDispatchAfterCommit.php │ └── ShouldHandleEventsAfterCommit.php ├── Filesystem │ ├── Cloud.php │ ├── Factory.php │ ├── FileNotFoundException.php │ ├── Filesystem.php │ └── LockTimeoutException.php ├── Foundation │ ├── Application.php │ ├── CachesConfiguration.php │ ├── CachesRoutes.php │ ├── ExceptionRenderer.php │ └── MaintenanceMode.php ├── Hashing │ └── Hasher.php ├── Http │ └── Kernel.php ├── LICENSE.md ├── Mail │ ├── Attachable.php │ ├── Factory.php │ ├── MailQueue.php │ ├── Mailable.php │ └── Mailer.php ├── Notifications │ ├── Dispatcher.php │ └── Factory.php ├── Pagination │ ├── CursorPaginator.php │ ├── LengthAwarePaginator.php │ └── Paginator.php ├── Pipeline │ ├── Hub.php │ └── Pipeline.php ├── Process │ ├── InvokedProcess.php │ └── ProcessResult.php ├── Queue │ ├── ClearableQueue.php │ ├── EntityNotFoundException.php │ ├── EntityResolver.php │ ├── Factory.php │ ├── Job.php │ ├── Monitor.php │ ├── Queue.php │ ├── QueueableCollection.php │ ├── QueueableEntity.php │ ├── ShouldBeEncrypted.php │ ├── ShouldBeUnique.php │ ├── ShouldBeUniqueUntilProcessing.php │ ├── ShouldQueue.php │ └── ShouldQueueAfterCommit.php ├── Redis │ ├── Connection.php │ ├── Connector.php │ ├── Factory.php │ └── LimiterTimeoutException.php ├── Routing │ ├── BindingRegistrar.php │ ├── Registrar.php │ ├── ResponseFactory.php │ ├── UrlGenerator.php │ └── UrlRoutable.php ├── Session │ ├── Middleware │ │ └── AuthenticatesSessions.php │ └── Session.php ├── Support │ ├── Arrayable.php │ ├── CanBeEscapedWhenCastToString.php │ ├── DeferrableProvider.php │ ├── DeferringDisplayableValue.php │ ├── Htmlable.php │ ├── Jsonable.php │ ├── MessageBag.php │ ├── MessageProvider.php │ ├── Renderable.php │ ├── Responsable.php │ └── ValidatedData.php ├── Translation │ ├── HasLocalePreference.php │ ├── Loader.php │ └── Translator.php ├── Validation │ ├── DataAwareRule.php │ ├── Factory.php │ ├── ImplicitRule.php │ ├── InvokableRule.php │ ├── Rule.php │ ├── UncompromisedVerifier.php │ ├── ValidatesWhenResolved.php │ ├── ValidationRule.php │ ├── Validator.php │ └── ValidatorAwareRule.php ├── View │ ├── Engine.php │ ├── Factory.php │ ├── View.php │ └── ViewCompilationException.php └── composer.json ├── Cookie ├── CookieJar.php ├── CookieServiceProvider.php ├── CookieValuePrefix.php ├── LICENSE.md ├── Middleware │ ├── AddQueuedCookiesToResponse.php │ └── EncryptCookies.php └── composer.json ├── Database ├── Capsule │ └── Manager.php ├── ClassMorphViolationException.php ├── Concerns │ ├── BuildsQueries.php │ ├── CompilesJsonPaths.php │ ├── ExplainsQueries.php │ ├── ManagesTransactions.php │ └── ParsesSearchPath.php ├── ConfigurationUrlParser.php ├── Connection.php ├── ConnectionInterface.php ├── ConnectionResolver.php ├── ConnectionResolverInterface.php ├── Connectors │ ├── ConnectionFactory.php │ ├── Connector.php │ ├── ConnectorInterface.php │ ├── MariaDbConnector.php │ ├── MySqlConnector.php │ ├── PostgresConnector.php │ ├── SQLiteConnector.php │ └── SqlServerConnector.php ├── Console │ ├── DatabaseInspectionCommand.php │ ├── DbCommand.php │ ├── DumpCommand.php │ ├── Factories │ │ ├── FactoryMakeCommand.php │ │ └── stubs │ │ │ └── factory.stub │ ├── Migrations │ │ ├── BaseCommand.php │ │ ├── FreshCommand.php │ │ ├── InstallCommand.php │ │ ├── MigrateCommand.php │ │ ├── MigrateMakeCommand.php │ │ ├── RefreshCommand.php │ │ ├── ResetCommand.php │ │ ├── RollbackCommand.php │ │ ├── StatusCommand.php │ │ └── TableGuesser.php │ ├── MonitorCommand.php │ ├── PruneCommand.php │ ├── Seeds │ │ ├── SeedCommand.php │ │ ├── SeederMakeCommand.php │ │ ├── WithoutModelEvents.php │ │ └── stubs │ │ │ └── seeder.stub │ ├── ShowCommand.php │ ├── ShowModelCommand.php │ ├── TableCommand.php │ └── WipeCommand.php ├── DatabaseManager.php ├── DatabaseServiceProvider.php ├── DatabaseTransactionRecord.php ├── DatabaseTransactionsManager.php ├── DeadlockException.php ├── DetectsConcurrencyErrors.php ├── DetectsLostConnections.php ├── Eloquent │ ├── Attributes │ │ ├── ObservedBy.php │ │ └── ScopedBy.php │ ├── BroadcastableModelEventOccurred.php │ ├── BroadcastsEvents.php │ ├── BroadcastsEventsAfterCommit.php │ ├── Builder.php │ ├── Casts │ │ ├── ArrayObject.php │ │ ├── AsArrayObject.php │ │ ├── AsCollection.php │ │ ├── AsEncryptedArrayObject.php │ │ ├── AsEncryptedCollection.php │ │ ├── AsEnumArrayObject.php │ │ ├── AsEnumCollection.php │ │ ├── AsStringable.php │ │ ├── Attribute.php │ │ └── Json.php │ ├── Collection.php │ ├── Concerns │ │ ├── GuardsAttributes.php │ │ ├── HasAttributes.php │ │ ├── HasEvents.php │ │ ├── HasGlobalScopes.php │ │ ├── HasRelationships.php │ │ ├── HasTimestamps.php │ │ ├── HasUlids.php │ │ ├── HasUniqueIds.php │ │ ├── HasUuids.php │ │ ├── HasVersion7Uuids.php │ │ ├── HidesAttributes.php │ │ └── QueriesRelationships.php │ ├── Factories │ │ ├── BelongsToManyRelationship.php │ │ ├── BelongsToRelationship.php │ │ ├── CrossJoinSequence.php │ │ ├── Factory.php │ │ ├── HasFactory.php │ │ ├── Relationship.php │ │ └── Sequence.php │ ├── HasBuilder.php │ ├── HasCollection.php │ ├── HigherOrderBuilderProxy.php │ ├── InvalidCastException.php │ ├── JsonEncodingException.php │ ├── MassAssignmentException.php │ ├── MassPrunable.php │ ├── MissingAttributeException.php │ ├── Model.php │ ├── ModelNotFoundException.php │ ├── PendingHasThroughRelationship.php │ ├── Prunable.php │ ├── QueueEntityResolver.php │ ├── RelationNotFoundException.php │ ├── Relations │ │ ├── BelongsTo.php │ │ ├── BelongsToMany.php │ │ ├── Concerns │ │ │ ├── AsPivot.php │ │ │ ├── CanBeOneOfMany.php │ │ │ ├── ComparesRelatedModels.php │ │ │ ├── InteractsWithDictionary.php │ │ │ ├── InteractsWithPivotTable.php │ │ │ └── SupportsDefaultModels.php │ │ ├── HasMany.php │ │ ├── HasManyThrough.php │ │ ├── HasOne.php │ │ ├── HasOneOrMany.php │ │ ├── HasOneOrManyThrough.php │ │ ├── HasOneThrough.php │ │ ├── MorphMany.php │ │ ├── MorphOne.php │ │ ├── MorphOneOrMany.php │ │ ├── MorphPivot.php │ │ ├── MorphTo.php │ │ ├── MorphToMany.php │ │ ├── Pivot.php │ │ └── Relation.php │ ├── Scope.php │ ├── SoftDeletes.php │ └── SoftDeletingScope.php ├── Events │ ├── ConnectionEstablished.php │ ├── ConnectionEvent.php │ ├── DatabaseBusy.php │ ├── DatabaseRefreshed.php │ ├── MigrationEnded.php │ ├── MigrationEvent.php │ ├── MigrationStarted.php │ ├── MigrationsEnded.php │ ├── MigrationsEvent.php │ ├── MigrationsStarted.php │ ├── ModelPruningFinished.php │ ├── ModelPruningStarting.php │ ├── ModelsPruned.php │ ├── NoPendingMigrations.php │ ├── QueryExecuted.php │ ├── SchemaDumped.php │ ├── SchemaLoaded.php │ ├── StatementPrepared.php │ ├── TransactionBeginning.php │ ├── TransactionCommitted.php │ ├── TransactionCommitting.php │ └── TransactionRolledBack.php ├── Grammar.php ├── LICENSE.md ├── LazyLoadingViolationException.php ├── LostConnectionException.php ├── MariaDbConnection.php ├── MigrationServiceProvider.php ├── Migrations │ ├── DatabaseMigrationRepository.php │ ├── Migration.php │ ├── MigrationCreator.php │ ├── MigrationRepositoryInterface.php │ ├── Migrator.php │ └── stubs │ │ ├── migration.create.stub │ │ ├── migration.stub │ │ └── migration.update.stub ├── MultipleColumnsSelectedException.php ├── MultipleRecordsFoundException.php ├── MySqlConnection.php ├── PostgresConnection.php ├── Query │ ├── Builder.php │ ├── Expression.php │ ├── Grammars │ │ ├── Grammar.php │ │ ├── MariaDbGrammar.php │ │ ├── MySqlGrammar.php │ │ ├── PostgresGrammar.php │ │ ├── SQLiteGrammar.php │ │ └── SqlServerGrammar.php │ ├── IndexHint.php │ ├── JoinClause.php │ ├── JoinLateralClause.php │ └── Processors │ │ ├── MariaDbProcessor.php │ │ ├── MySqlProcessor.php │ │ ├── PostgresProcessor.php │ │ ├── Processor.php │ │ ├── SQLiteProcessor.php │ │ └── SqlServerProcessor.php ├── QueryException.php ├── README.md ├── RecordsNotFoundException.php ├── SQLiteConnection.php ├── SQLiteDatabaseDoesNotExistException.php ├── Schema │ ├── Blueprint.php │ ├── BlueprintState.php │ ├── Builder.php │ ├── ColumnDefinition.php │ ├── ForeignIdColumnDefinition.php │ ├── ForeignKeyDefinition.php │ ├── Grammars │ │ ├── Grammar.php │ │ ├── MariaDbGrammar.php │ │ ├── MySqlGrammar.php │ │ ├── PostgresGrammar.php │ │ ├── SQLiteGrammar.php │ │ └── SqlServerGrammar.php │ ├── IndexDefinition.php │ ├── MariaDbBuilder.php │ ├── MariaDbSchemaState.php │ ├── MySqlBuilder.php │ ├── MySqlSchemaState.php │ ├── PostgresBuilder.php │ ├── PostgresSchemaState.php │ ├── SQLiteBuilder.php │ ├── SchemaState.php │ ├── SqlServerBuilder.php │ └── SqliteSchemaState.php ├── Seeder.php ├── SqlServerConnection.php ├── UniqueConstraintViolationException.php └── composer.json ├── Encryption ├── Encrypter.php ├── EncryptionServiceProvider.php ├── LICENSE.md ├── MissingAppKeyException.php └── composer.json ├── Events ├── CallQueuedListener.php ├── Dispatcher.php ├── EventServiceProvider.php ├── InvokeQueuedClosure.php ├── LICENSE.md ├── NullDispatcher.php ├── QueuedClosure.php ├── composer.json └── functions.php ├── Filesystem ├── AwsS3V3Adapter.php ├── Filesystem.php ├── FilesystemAdapter.php ├── FilesystemManager.php ├── FilesystemServiceProvider.php ├── LICENSE.md ├── LockableFile.php ├── composer.json └── functions.php ├── Foundation ├── AliasLoader.php ├── Application.php ├── Auth │ ├── Access │ │ ├── Authorizable.php │ │ └── AuthorizesRequests.php │ ├── EmailVerificationRequest.php │ └── User.php ├── Bootstrap │ ├── BootProviders.php │ ├── HandleExceptions.php │ ├── LoadConfiguration.php │ ├── LoadEnvironmentVariables.php │ ├── RegisterFacades.php │ ├── RegisterProviders.php │ └── SetRequestForConsole.php ├── Bus │ ├── Dispatchable.php │ ├── DispatchesJobs.php │ ├── PendingChain.php │ ├── PendingClosureDispatch.php │ └── PendingDispatch.php ├── CacheBasedMaintenanceMode.php ├── ComposerScripts.php ├── Concerns │ └── ResolvesDumpSource.php ├── Configuration │ ├── ApplicationBuilder.php │ ├── Exceptions.php │ └── Middleware.php ├── Console │ ├── AboutCommand.php │ ├── ApiInstallCommand.php │ ├── BroadcastingInstallCommand.php │ ├── CastMakeCommand.php │ ├── ChannelListCommand.php │ ├── ChannelMakeCommand.php │ ├── ClassMakeCommand.php │ ├── ClearCompiledCommand.php │ ├── CliDumper.php │ ├── ClosureCommand.php │ ├── ComponentMakeCommand.php │ ├── ConfigCacheCommand.php │ ├── ConfigClearCommand.php │ ├── ConfigPublishCommand.php │ ├── ConfigShowCommand.php │ ├── ConsoleMakeCommand.php │ ├── DocsCommand.php │ ├── DownCommand.php │ ├── EnumMakeCommand.php │ ├── EnvironmentCommand.php │ ├── EnvironmentDecryptCommand.php │ ├── EnvironmentEncryptCommand.php │ ├── EventCacheCommand.php │ ├── EventClearCommand.php │ ├── EventGenerateCommand.php │ ├── EventListCommand.php │ ├── EventMakeCommand.php │ ├── ExceptionMakeCommand.php │ ├── InteractsWithComposerPackages.php │ ├── InterfaceMakeCommand.php │ ├── JobMakeCommand.php │ ├── Kernel.php │ ├── KeyGenerateCommand.php │ ├── LangPublishCommand.php │ ├── ListenerMakeCommand.php │ ├── MailMakeCommand.php │ ├── ModelMakeCommand.php │ ├── NotificationMakeCommand.php │ ├── ObserverMakeCommand.php │ ├── OptimizeClearCommand.php │ ├── OptimizeCommand.php │ ├── PackageDiscoverCommand.php │ ├── PolicyMakeCommand.php │ ├── ProviderMakeCommand.php │ ├── QueuedCommand.php │ ├── RequestMakeCommand.php │ ├── ResourceMakeCommand.php │ ├── RouteCacheCommand.php │ ├── RouteClearCommand.php │ ├── RouteListCommand.php │ ├── RuleMakeCommand.php │ ├── ScopeMakeCommand.php │ ├── ServeCommand.php │ ├── StorageLinkCommand.php │ ├── StorageUnlinkCommand.php │ ├── StubPublishCommand.php │ ├── TestMakeCommand.php │ ├── TraitMakeCommand.php │ ├── UpCommand.php │ ├── VendorPublishCommand.php │ ├── ViewCacheCommand.php │ ├── ViewClearCommand.php │ ├── ViewMakeCommand.php │ └── stubs │ │ ├── api-routes.stub │ │ ├── broadcasting-routes.stub │ │ ├── cast.inbound.stub │ │ ├── cast.stub │ │ ├── channel.stub │ │ ├── class.invokable.stub │ │ ├── class.stub │ │ ├── console.stub │ │ ├── echo-bootstrap-js.stub │ │ ├── echo-js.stub │ │ ├── enum.backed.stub │ │ ├── enum.stub │ │ ├── event.stub │ │ ├── exception-render-report.stub │ │ ├── exception-render.stub │ │ ├── exception-report.stub │ │ ├── exception.stub │ │ ├── interface.stub │ │ ├── job.queued.stub │ │ ├── job.stub │ │ ├── listener.queued.stub │ │ ├── listener.stub │ │ ├── listener.typed.queued.stub │ │ ├── listener.typed.stub │ │ ├── mail.stub │ │ ├── maintenance-mode.stub │ │ ├── markdown-mail.stub │ │ ├── markdown-notification.stub │ │ ├── markdown.stub │ │ ├── model.morph-pivot.stub │ │ ├── model.pivot.stub │ │ ├── model.stub │ │ ├── notification.stub │ │ ├── observer.plain.stub │ │ ├── observer.stub │ │ ├── pest.stub │ │ ├── pest.unit.stub │ │ ├── policy.plain.stub │ │ ├── policy.stub │ │ ├── provider.stub │ │ ├── request.stub │ │ ├── resource-collection.stub │ │ ├── resource.stub │ │ ├── routes.stub │ │ ├── rule.implicit.stub │ │ ├── rule.stub │ │ ├── scope.stub │ │ ├── test.stub │ │ ├── test.unit.stub │ │ ├── trait.stub │ │ ├── view-component.stub │ │ ├── view-mail.stub │ │ ├── view.pest.stub │ │ ├── view.stub │ │ └── view.test.stub ├── EnvironmentDetector.php ├── Events │ ├── DiagnosingHealth.php │ ├── DiscoverEvents.php │ ├── Dispatchable.php │ ├── LocaleUpdated.php │ ├── MaintenanceModeDisabled.php │ ├── MaintenanceModeEnabled.php │ ├── PublishingStubs.php │ ├── Terminating.php │ └── VendorTagPublished.php ├── Exceptions │ ├── Handler.php │ ├── RegisterErrorViewPaths.php │ ├── Renderer │ │ ├── Exception.php │ │ ├── Frame.php │ │ ├── Listener.php │ │ ├── Mappers │ │ │ └── BladeMapper.php │ │ └── Renderer.php │ ├── ReportableHandler.php │ ├── Whoops │ │ ├── WhoopsExceptionRenderer.php │ │ └── WhoopsHandler.php │ └── views │ │ ├── 401.blade.php │ │ ├── 402.blade.php │ │ ├── 403.blade.php │ │ ├── 404.blade.php │ │ ├── 419.blade.php │ │ ├── 429.blade.php │ │ ├── 500.blade.php │ │ ├── 503.blade.php │ │ ├── layout.blade.php │ │ └── minimal.blade.php ├── FileBasedMaintenanceMode.php ├── Http │ ├── Events │ │ └── RequestHandled.php │ ├── FormRequest.php │ ├── HtmlDumper.php │ ├── Kernel.php │ ├── MaintenanceModeBypassCookie.php │ └── Middleware │ │ ├── CheckForMaintenanceMode.php │ │ ├── Concerns │ │ └── ExcludesPaths.php │ │ ├── ConvertEmptyStringsToNull.php │ │ ├── HandlePrecognitiveRequests.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── TransformsRequest.php │ │ ├── TrimStrings.php │ │ ├── ValidateCsrfToken.php │ │ ├── ValidatePostSize.php │ │ └── VerifyCsrfToken.php ├── Inspiring.php ├── MaintenanceModeManager.php ├── Mix.php ├── MixManifestNotFoundException.php ├── PackageManifest.php ├── Precognition.php ├── ProviderRepository.php ├── Providers │ ├── ArtisanServiceProvider.php │ ├── ComposerServiceProvider.php │ ├── ConsoleSupportServiceProvider.php │ ├── FormRequestServiceProvider.php │ └── FoundationServiceProvider.php ├── Queue │ └── Queueable.php ├── Routing │ ├── PrecognitionCallableDispatcher.php │ └── PrecognitionControllerDispatcher.php ├── Support │ └── Providers │ │ ├── AuthServiceProvider.php │ │ ├── EventServiceProvider.php │ │ └── RouteServiceProvider.php ├── Testing │ ├── Concerns │ │ ├── InteractsWithAuthentication.php │ │ ├── InteractsWithConsole.php │ │ ├── InteractsWithContainer.php │ │ ├── InteractsWithDatabase.php │ │ ├── InteractsWithDeprecationHandling.php │ │ ├── InteractsWithExceptionHandling.php │ │ ├── InteractsWithRedis.php │ │ ├── InteractsWithSession.php │ │ ├── InteractsWithTestCaseLifecycle.php │ │ ├── InteractsWithTime.php │ │ ├── InteractsWithViews.php │ │ ├── MakesHttpRequests.php │ │ └── WithoutExceptionHandlingHandler.php │ ├── DatabaseMigrations.php │ ├── DatabaseTransactions.php │ ├── DatabaseTransactionsManager.php │ ├── DatabaseTruncation.php │ ├── LazilyRefreshDatabase.php │ ├── RefreshDatabase.php │ ├── RefreshDatabaseState.php │ ├── TestCase.php │ ├── Traits │ │ └── CanConfigureMigrationCommands.php │ ├── WithConsoleEvents.php │ ├── WithFaker.php │ ├── WithoutMiddleware.php │ └── Wormhole.php ├── Validation │ └── ValidatesRequests.php ├── Vite.php ├── ViteException.php ├── ViteManifestNotFoundException.php ├── helpers.php ├── resources │ ├── exceptions │ │ └── renderer │ │ │ ├── components │ │ │ ├── card.blade.php │ │ │ ├── context.blade.php │ │ │ ├── editor.blade.php │ │ │ ├── header.blade.php │ │ │ ├── icons │ │ │ │ ├── chevron-down.blade.php │ │ │ │ ├── chevron-up.blade.php │ │ │ │ ├── computer-desktop.blade.php │ │ │ │ ├── moon.blade.php │ │ │ │ └── sun.blade.php │ │ │ ├── layout.blade.php │ │ │ ├── navigation.blade.php │ │ │ ├── theme-switcher.blade.php │ │ │ ├── trace-and-editor.blade.php │ │ │ └── trace.blade.php │ │ │ ├── dark-mode.css │ │ │ ├── dist │ │ │ ├── dark-mode.css │ │ │ ├── light-mode.css │ │ │ ├── scripts.js │ │ │ └── styles.css │ │ │ ├── light-mode.css │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── postcss.config.js │ │ │ ├── scripts.js │ │ │ ├── show.blade.php │ │ │ ├── styles.css │ │ │ ├── tailwind.config.js │ │ │ └── vite.config.js │ ├── health-up.blade.php │ └── server.php └── stubs │ └── facade.stub ├── Hashing ├── AbstractHasher.php ├── Argon2IdHasher.php ├── ArgonHasher.php ├── BcryptHasher.php ├── HashManager.php ├── HashServiceProvider.php ├── LICENSE.md └── composer.json ├── Http ├── Client │ ├── Concerns │ │ └── DeterminesStatusCode.php │ ├── ConnectionException.php │ ├── Events │ │ ├── ConnectionFailed.php │ │ ├── RequestSending.php │ │ └── ResponseReceived.php │ ├── Factory.php │ ├── HttpClientException.php │ ├── PendingRequest.php │ ├── Pool.php │ ├── Request.php │ ├── RequestException.php │ ├── Response.php │ └── ResponseSequence.php ├── Concerns │ ├── CanBePrecognitive.php │ ├── InteractsWithContentTypes.php │ ├── InteractsWithFlashData.php │ └── InteractsWithInput.php ├── Exceptions │ ├── HttpResponseException.php │ ├── PostTooLargeException.php │ └── ThrottleRequestsException.php ├── File.php ├── FileHelpers.php ├── JsonResponse.php ├── LICENSE.md ├── Middleware │ ├── AddLinkHeadersForPreloadedAssets.php │ ├── CheckResponseForModifications.php │ ├── FrameGuard.php │ ├── HandleCors.php │ ├── SetCacheHeaders.php │ ├── TrustHosts.php │ ├── TrustProxies.php │ └── ValidatePostSize.php ├── RedirectResponse.php ├── Request.php ├── Resources │ ├── CollectsResources.php │ ├── ConditionallyLoadsAttributes.php │ ├── DelegatesToResource.php │ ├── Json │ │ ├── AnonymousResourceCollection.php │ │ ├── JsonResource.php │ │ ├── PaginatedResourceResponse.php │ │ ├── ResourceCollection.php │ │ └── ResourceResponse.php │ ├── MergeValue.php │ ├── MissingValue.php │ └── PotentiallyMissing.php ├── Response.php ├── ResponseTrait.php ├── Testing │ ├── File.php │ ├── FileFactory.php │ └── MimeType.php ├── UploadedFile.php └── composer.json ├── Log ├── Context │ ├── ContextServiceProvider.php │ ├── Events │ │ ├── ContextDehydrating.php │ │ └── ContextHydrated.php │ └── Repository.php ├── Events │ └── MessageLogged.php ├── LICENSE.md ├── LogManager.php ├── LogServiceProvider.php ├── Logger.php ├── ParsesLogConfiguration.php └── composer.json ├── Macroable ├── LICENSE.md ├── Traits │ └── Macroable.php └── composer.json ├── Mail ├── Attachment.php ├── Events │ ├── MessageSending.php │ └── MessageSent.php ├── LICENSE.md ├── MailManager.php ├── MailServiceProvider.php ├── Mailable.php ├── Mailables │ ├── Address.php │ ├── Attachment.php │ ├── Content.php │ ├── Envelope.php │ └── Headers.php ├── Mailer.php ├── Markdown.php ├── Message.php ├── PendingMail.php ├── SendQueuedMailable.php ├── SentMessage.php ├── TextMessage.php ├── Transport │ ├── ArrayTransport.php │ ├── LogTransport.php │ ├── ResendTransport.php │ ├── SesTransport.php │ └── SesV2Transport.php ├── composer.json └── resources │ └── views │ ├── html │ ├── button.blade.php │ ├── footer.blade.php │ ├── header.blade.php │ ├── layout.blade.php │ ├── message.blade.php │ ├── panel.blade.php │ ├── subcopy.blade.php │ ├── table.blade.php │ └── themes │ │ └── default.css │ └── text │ ├── button.blade.php │ ├── footer.blade.php │ ├── header.blade.php │ ├── layout.blade.php │ ├── message.blade.php │ ├── panel.blade.php │ ├── subcopy.blade.php │ └── table.blade.php ├── Notifications ├── Action.php ├── AnonymousNotifiable.php ├── ChannelManager.php ├── Channels │ ├── BroadcastChannel.php │ ├── DatabaseChannel.php │ └── MailChannel.php ├── Console │ ├── NotificationTableCommand.php │ └── stubs │ │ └── notifications.stub ├── DatabaseNotification.php ├── DatabaseNotificationCollection.php ├── Events │ ├── BroadcastNotificationCreated.php │ ├── NotificationFailed.php │ ├── NotificationSending.php │ └── NotificationSent.php ├── HasDatabaseNotifications.php ├── LICENSE.md ├── Messages │ ├── BroadcastMessage.php │ ├── DatabaseMessage.php │ ├── MailMessage.php │ └── SimpleMessage.php ├── Notifiable.php ├── Notification.php ├── NotificationSender.php ├── NotificationServiceProvider.php ├── RoutesNotifications.php ├── SendQueuedNotifications.php ├── composer.json └── resources │ └── views │ └── email.blade.php ├── Pagination ├── AbstractCursorPaginator.php ├── AbstractPaginator.php ├── Cursor.php ├── CursorPaginator.php ├── LICENSE.md ├── LengthAwarePaginator.php ├── PaginationServiceProvider.php ├── PaginationState.php ├── Paginator.php ├── UrlWindow.php ├── composer.json └── resources │ └── views │ ├── bootstrap-4.blade.php │ ├── bootstrap-5.blade.php │ ├── default.blade.php │ ├── semantic-ui.blade.php │ ├── simple-bootstrap-4.blade.php │ ├── simple-bootstrap-5.blade.php │ ├── simple-default.blade.php │ ├── simple-tailwind.blade.php │ └── tailwind.blade.php ├── Pipeline ├── Hub.php ├── LICENSE.md ├── Pipeline.php ├── PipelineServiceProvider.php └── composer.json ├── Process ├── Exceptions │ ├── ProcessFailedException.php │ └── ProcessTimedOutException.php ├── Factory.php ├── FakeInvokedProcess.php ├── FakeProcessDescription.php ├── FakeProcessResult.php ├── FakeProcessSequence.php ├── InvokedProcess.php ├── InvokedProcessPool.php ├── LICENSE.md ├── PendingProcess.php ├── Pipe.php ├── Pool.php ├── ProcessPoolResults.php ├── ProcessResult.php └── composer.json ├── Queue ├── Attributes │ ├── DeleteWhenMissingModels.php │ └── WithoutRelations.php ├── BeanstalkdQueue.php ├── CallQueuedClosure.php ├── CallQueuedHandler.php ├── Capsule │ └── Manager.php ├── Connectors │ ├── BeanstalkdConnector.php │ ├── ConnectorInterface.php │ ├── DatabaseConnector.php │ ├── NullConnector.php │ ├── RedisConnector.php │ ├── SqsConnector.php │ └── SyncConnector.php ├── Console │ ├── BatchesTableCommand.php │ ├── ClearCommand.php │ ├── FailedTableCommand.php │ ├── FlushFailedCommand.php │ ├── ForgetFailedCommand.php │ ├── ListFailedCommand.php │ ├── ListenCommand.php │ ├── MonitorCommand.php │ ├── PruneBatchesCommand.php │ ├── PruneFailedJobsCommand.php │ ├── RestartCommand.php │ ├── RetryBatchCommand.php │ ├── RetryCommand.php │ ├── TableCommand.php │ ├── WorkCommand.php │ └── stubs │ │ ├── batches.stub │ │ ├── failed_jobs.stub │ │ └── jobs.stub ├── DatabaseQueue.php ├── Events │ ├── JobExceptionOccurred.php │ ├── JobFailed.php │ ├── JobPopped.php │ ├── JobPopping.php │ ├── JobProcessed.php │ ├── JobProcessing.php │ ├── JobQueued.php │ ├── JobQueueing.php │ ├── JobReleasedAfterException.php │ ├── JobRetryRequested.php │ ├── JobTimedOut.php │ ├── Looping.php │ ├── QueueBusy.php │ └── WorkerStopping.php ├── Failed │ ├── CountableFailedJobProvider.php │ ├── DatabaseFailedJobProvider.php │ ├── DatabaseUuidFailedJobProvider.php │ ├── DynamoDbFailedJobProvider.php │ ├── FailedJobProviderInterface.php │ ├── FileFailedJobProvider.php │ ├── NullFailedJobProvider.php │ └── PrunableFailedJobProvider.php ├── InteractsWithQueue.php ├── InvalidPayloadException.php ├── Jobs │ ├── BeanstalkdJob.php │ ├── DatabaseJob.php │ ├── DatabaseJobRecord.php │ ├── FakeJob.php │ ├── Job.php │ ├── JobName.php │ ├── RedisJob.php │ ├── SqsJob.php │ └── SyncJob.php ├── LICENSE.md ├── Listener.php ├── ListenerOptions.php ├── LuaScripts.php ├── ManuallyFailedException.php ├── MaxAttemptsExceededException.php ├── Middleware │ ├── RateLimited.php │ ├── RateLimitedWithRedis.php │ ├── SkipIfBatchCancelled.php │ ├── ThrottlesExceptions.php │ ├── ThrottlesExceptionsWithRedis.php │ └── WithoutOverlapping.php ├── NullQueue.php ├── Queue.php ├── QueueManager.php ├── QueueServiceProvider.php ├── README.md ├── RedisQueue.php ├── SerializesAndRestoresModelIdentifiers.php ├── SerializesModels.php ├── SqsQueue.php ├── SyncQueue.php ├── TimeoutExceededException.php ├── Worker.php ├── WorkerOptions.php └── composer.json ├── Redis ├── Connections │ ├── Connection.php │ ├── PacksPhpRedisValues.php │ ├── PhpRedisClusterConnection.php │ ├── PhpRedisConnection.php │ ├── PredisClusterConnection.php │ └── PredisConnection.php ├── Connectors │ ├── PhpRedisConnector.php │ └── PredisConnector.php ├── Events │ └── CommandExecuted.php ├── LICENSE.md ├── Limiters │ ├── ConcurrencyLimiter.php │ ├── ConcurrencyLimiterBuilder.php │ ├── DurationLimiter.php │ └── DurationLimiterBuilder.php ├── RedisManager.php ├── RedisServiceProvider.php └── composer.json ├── Routing ├── AbstractRouteCollection.php ├── CallableDispatcher.php ├── CompiledRouteCollection.php ├── Console │ ├── ControllerMakeCommand.php │ ├── MiddlewareMakeCommand.php │ └── stubs │ │ ├── controller.api.stub │ │ ├── controller.invokable.stub │ │ ├── controller.model.api.stub │ │ ├── controller.model.stub │ │ ├── controller.nested.api.stub │ │ ├── controller.nested.singleton.api.stub │ │ ├── controller.nested.singleton.stub │ │ ├── controller.nested.stub │ │ ├── controller.plain.stub │ │ ├── controller.singleton.api.stub │ │ ├── controller.singleton.stub │ │ ├── controller.stub │ │ └── middleware.stub ├── Contracts │ ├── CallableDispatcher.php │ └── ControllerDispatcher.php ├── Controller.php ├── ControllerDispatcher.php ├── ControllerMiddlewareOptions.php ├── Controllers │ ├── HasMiddleware.php │ └── Middleware.php ├── CreatesRegularExpressionRouteConstraints.php ├── Events │ ├── PreparingResponse.php │ ├── ResponsePrepared.php │ ├── RouteMatched.php │ └── Routing.php ├── Exceptions │ ├── BackedEnumCaseNotFoundException.php │ ├── InvalidSignatureException.php │ ├── MissingRateLimiterException.php │ ├── StreamedResponseException.php │ └── UrlGenerationException.php ├── FiltersControllerMiddleware.php ├── ImplicitRouteBinding.php ├── LICENSE.md ├── Matching │ ├── HostValidator.php │ ├── MethodValidator.php │ ├── SchemeValidator.php │ ├── UriValidator.php │ └── ValidatorInterface.php ├── Middleware │ ├── SubstituteBindings.php │ ├── ThrottleRequests.php │ ├── ThrottleRequestsWithRedis.php │ └── ValidateSignature.php ├── MiddlewareNameResolver.php ├── PendingResourceRegistration.php ├── PendingSingletonResourceRegistration.php ├── Pipeline.php ├── RedirectController.php ├── Redirector.php ├── ResolvesRouteDependencies.php ├── ResourceRegistrar.php ├── ResponseFactory.php ├── Route.php ├── RouteAction.php ├── RouteBinding.php ├── RouteCollection.php ├── RouteCollectionInterface.php ├── RouteDependencyResolverTrait.php ├── RouteFileRegistrar.php ├── RouteGroup.php ├── RouteParameterBinder.php ├── RouteRegistrar.php ├── RouteSignatureParameters.php ├── RouteUri.php ├── RouteUrlGenerator.php ├── Router.php ├── RoutingServiceProvider.php ├── SortedMiddleware.php ├── UrlGenerator.php ├── ViewController.php └── composer.json ├── Session ├── ArraySessionHandler.php ├── CacheBasedSessionHandler.php ├── Console │ ├── SessionTableCommand.php │ └── stubs │ │ └── database.stub ├── CookieSessionHandler.php ├── DatabaseSessionHandler.php ├── EncryptedStore.php ├── ExistenceAwareInterface.php ├── FileSessionHandler.php ├── LICENSE.md ├── Middleware │ ├── AuthenticateSession.php │ └── StartSession.php ├── NullSessionHandler.php ├── SessionManager.php ├── SessionServiceProvider.php ├── Store.php ├── SymfonySessionDecorator.php ├── TokenMismatchException.php └── composer.json ├── Support ├── AggregateServiceProvider.php ├── Benchmark.php ├── Carbon.php ├── Composer.php ├── ConfigurationUrlParser.php ├── DateFactory.php ├── DefaultProviders.php ├── Env.php ├── Exceptions │ └── MathException.php ├── Facades │ ├── App.php │ ├── Artisan.php │ ├── Auth.php │ ├── Blade.php │ ├── Broadcast.php │ ├── Bus.php │ ├── Cache.php │ ├── Config.php │ ├── Context.php │ ├── Cookie.php │ ├── Crypt.php │ ├── DB.php │ ├── Date.php │ ├── Event.php │ ├── Exceptions.php │ ├── Facade.php │ ├── File.php │ ├── Gate.php │ ├── Hash.php │ ├── Http.php │ ├── Lang.php │ ├── Log.php │ ├── Mail.php │ ├── Notification.php │ ├── ParallelTesting.php │ ├── Password.php │ ├── Pipeline.php │ ├── Process.php │ ├── Queue.php │ ├── RateLimiter.php │ ├── Redirect.php │ ├── Redis.php │ ├── Request.php │ ├── Response.php │ ├── Route.php │ ├── Schedule.php │ ├── Schema.php │ ├── Session.php │ ├── Storage.php │ ├── URL.php │ ├── Validator.php │ ├── View.php │ └── Vite.php ├── Fluent.php ├── HigherOrderTapProxy.php ├── HtmlString.php ├── InteractsWithTime.php ├── Js.php ├── LICENSE.md ├── Lottery.php ├── Manager.php ├── MessageBag.php ├── MultipleInstanceManager.php ├── NamespacedItemResolver.php ├── Number.php ├── Once.php ├── Onceable.php ├── Optional.php ├── Pluralizer.php ├── ProcessUtils.php ├── Reflector.php ├── ServiceProvider.php ├── Sleep.php ├── Str.php ├── Stringable.php ├── Testing │ └── Fakes │ │ ├── BatchFake.php │ │ ├── BatchRepositoryFake.php │ │ ├── BusFake.php │ │ ├── ChainedBatchTruthTest.php │ │ ├── EventFake.php │ │ ├── ExceptionHandlerFake.php │ │ ├── Fake.php │ │ ├── MailFake.php │ │ ├── NotificationFake.php │ │ ├── PendingBatchFake.php │ │ ├── PendingChainFake.php │ │ ├── PendingMailFake.php │ │ └── QueueFake.php ├── Timebox.php ├── Traits │ ├── CapsuleManagerTrait.php │ ├── Dumpable.php │ ├── ForwardsCalls.php │ ├── Localizable.php │ ├── ReflectsClosures.php │ └── Tappable.php ├── ValidatedInput.php ├── ViewErrorBag.php ├── composer.json └── helpers.php ├── Testing ├── Assert.php ├── AssertableJsonString.php ├── Concerns │ ├── AssertsStatusCodes.php │ ├── RunsInParallel.php │ └── TestDatabases.php ├── Constraints │ ├── ArraySubset.php │ ├── CountInDatabase.php │ ├── HasInDatabase.php │ ├── NotSoftDeletedInDatabase.php │ ├── SeeInOrder.php │ └── SoftDeletedInDatabase.php ├── Exceptions │ └── InvalidArgumentException.php ├── Fluent │ ├── AssertableJson.php │ └── Concerns │ │ ├── Debugging.php │ │ ├── Has.php │ │ ├── Interaction.php │ │ └── Matching.php ├── LICENSE.md ├── LoggedExceptionCollection.php ├── ParallelConsoleOutput.php ├── ParallelRunner.php ├── ParallelTesting.php ├── ParallelTestingServiceProvider.php ├── PendingCommand.php ├── TestComponent.php ├── TestResponse.php ├── TestResponseAssert.php ├── TestView.php └── composer.json ├── Translation ├── ArrayLoader.php ├── CreatesPotentiallyTranslatedStrings.php ├── FileLoader.php ├── LICENSE.md ├── MessageSelector.php ├── PotentiallyTranslatedString.php ├── TranslationServiceProvider.php ├── Translator.php ├── composer.json └── lang │ └── en │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── Validation ├── ClosureValidationRule.php ├── Concerns │ ├── FilterEmailValidation.php │ ├── FormatsMessages.php │ ├── ReplacesAttributes.php │ └── ValidatesAttributes.php ├── ConditionalRules.php ├── DatabasePresenceVerifier.php ├── DatabasePresenceVerifierInterface.php ├── Factory.php ├── InvokableValidationRule.php ├── LICENSE.md ├── NestedRules.php ├── NotPwnedVerifier.php ├── PresenceVerifierInterface.php ├── Rule.php ├── Rules │ ├── ArrayRule.php │ ├── Can.php │ ├── DatabaseRule.php │ ├── Dimensions.php │ ├── Enum.php │ ├── ExcludeIf.php │ ├── Exists.php │ ├── File.php │ ├── ImageFile.php │ ├── In.php │ ├── NotIn.php │ ├── Password.php │ ├── ProhibitedIf.php │ ├── RequiredIf.php │ └── Unique.php ├── UnauthorizedException.php ├── ValidatesWhenResolvedTrait.php ├── ValidationData.php ├── ValidationException.php ├── ValidationRuleParser.php ├── ValidationServiceProvider.php ├── Validator.php └── composer.json └── View ├── AnonymousComponent.php ├── AppendableAttributeValue.php ├── Compilers ├── BladeCompiler.php ├── Compiler.php ├── CompilerInterface.php ├── ComponentTagCompiler.php └── Concerns │ ├── CompilesAuthorizations.php │ ├── CompilesClasses.php │ ├── CompilesComments.php │ ├── CompilesComponents.php │ ├── CompilesConditionals.php │ ├── CompilesEchos.php │ ├── CompilesErrors.php │ ├── CompilesFragments.php │ ├── CompilesHelpers.php │ ├── CompilesIncludes.php │ ├── CompilesInjections.php │ ├── CompilesJs.php │ ├── CompilesJson.php │ ├── CompilesLayouts.php │ ├── CompilesLoops.php │ ├── CompilesRawPhp.php │ ├── CompilesSessions.php │ ├── CompilesStacks.php │ ├── CompilesStyles.php │ ├── CompilesTranslations.php │ └── CompilesUseStatements.php ├── Component.php ├── ComponentAttributeBag.php ├── ComponentSlot.php ├── Concerns ├── ManagesComponents.php ├── ManagesEvents.php ├── ManagesFragments.php ├── ManagesLayouts.php ├── ManagesLoops.php ├── ManagesStacks.php └── ManagesTranslations.php ├── DynamicComponent.php ├── Engines ├── CompilerEngine.php ├── Engine.php ├── EngineResolver.php ├── FileEngine.php └── PhpEngine.php ├── Factory.php ├── FileViewFinder.php ├── InvokableComponentVariable.php ├── LICENSE.md ├── Middleware └── ShareErrorsFromSession.php ├── View.php ├── ViewException.php ├── ViewFinderInterface.php ├── ViewName.php ├── ViewServiceProvider.php └── composer.json /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/composer.json -------------------------------------------------------------------------------- /config-stubs/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/config-stubs/app.php -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/config/cors.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/config/session.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/config/view.php -------------------------------------------------------------------------------- /src/Illuminate/Auth/Access/Events/GateEvaluated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Auth/Access/Events/GateEvaluated.php -------------------------------------------------------------------------------- /src/Illuminate/Auth/Access/Gate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Auth/Access/Gate.php -------------------------------------------------------------------------------- /src/Illuminate/Auth/Access/HandlesAuthorization.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Auth/Access/HandlesAuthorization.php -------------------------------------------------------------------------------- /src/Illuminate/Auth/Access/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Auth/Access/Response.php -------------------------------------------------------------------------------- /src/Illuminate/Auth/AuthManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Auth/AuthManager.php -------------------------------------------------------------------------------- /src/Illuminate/Auth/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Auth/AuthServiceProvider.php -------------------------------------------------------------------------------- /src/Illuminate/Auth/Authenticatable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Auth/Authenticatable.php -------------------------------------------------------------------------------- /src/Illuminate/Auth/AuthenticationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Auth/AuthenticationException.php -------------------------------------------------------------------------------- /src/Illuminate/Auth/Console/ClearResetsCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Auth/Console/ClearResetsCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Auth/CreatesUserProviders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Auth/CreatesUserProviders.php -------------------------------------------------------------------------------- /src/Illuminate/Auth/DatabaseUserProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Auth/DatabaseUserProvider.php -------------------------------------------------------------------------------- /src/Illuminate/Auth/EloquentUserProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Auth/EloquentUserProvider.php -------------------------------------------------------------------------------- /src/Illuminate/Auth/Events/Attempting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Auth/Events/Attempting.php -------------------------------------------------------------------------------- /src/Illuminate/Auth/Events/Authenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Auth/Events/Authenticated.php -------------------------------------------------------------------------------- /src/Illuminate/Auth/Events/CurrentDeviceLogout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Auth/Events/CurrentDeviceLogout.php -------------------------------------------------------------------------------- /src/Illuminate/Auth/Events/Failed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Auth/Events/Failed.php -------------------------------------------------------------------------------- /src/Illuminate/Auth/Events/Lockout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Auth/Events/Lockout.php -------------------------------------------------------------------------------- /src/Illuminate/Auth/Events/Login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Auth/Events/Login.php -------------------------------------------------------------------------------- /src/Illuminate/Auth/Events/Logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Auth/Events/Logout.php -------------------------------------------------------------------------------- /src/Illuminate/Auth/Events/OtherDeviceLogout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Auth/Events/OtherDeviceLogout.php -------------------------------------------------------------------------------- /src/Illuminate/Auth/Events/PasswordReset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Auth/Events/PasswordReset.php -------------------------------------------------------------------------------- /src/Illuminate/Auth/Events/Registered.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Auth/Events/Registered.php -------------------------------------------------------------------------------- /src/Illuminate/Auth/Events/Validated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Auth/Events/Validated.php -------------------------------------------------------------------------------- /src/Illuminate/Auth/Events/Verified.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Auth/Events/Verified.php -------------------------------------------------------------------------------- /src/Illuminate/Auth/GenericUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Auth/GenericUser.php -------------------------------------------------------------------------------- /src/Illuminate/Auth/GuardHelpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Auth/GuardHelpers.php -------------------------------------------------------------------------------- /src/Illuminate/Auth/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Auth/LICENSE.md -------------------------------------------------------------------------------- /src/Illuminate/Auth/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Auth/Middleware/Authenticate.php -------------------------------------------------------------------------------- /src/Illuminate/Auth/Middleware/Authorize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Auth/Middleware/Authorize.php -------------------------------------------------------------------------------- /src/Illuminate/Auth/Middleware/RequirePassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Auth/Middleware/RequirePassword.php -------------------------------------------------------------------------------- /src/Illuminate/Auth/MustVerifyEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Auth/MustVerifyEmail.php -------------------------------------------------------------------------------- /src/Illuminate/Auth/Notifications/ResetPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Auth/Notifications/ResetPassword.php -------------------------------------------------------------------------------- /src/Illuminate/Auth/Notifications/VerifyEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Auth/Notifications/VerifyEmail.php -------------------------------------------------------------------------------- /src/Illuminate/Auth/Passwords/CanResetPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Auth/Passwords/CanResetPassword.php -------------------------------------------------------------------------------- /src/Illuminate/Auth/Passwords/PasswordBroker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Auth/Passwords/PasswordBroker.php -------------------------------------------------------------------------------- /src/Illuminate/Auth/Recaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Auth/Recaller.php -------------------------------------------------------------------------------- /src/Illuminate/Auth/RequestGuard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Auth/RequestGuard.php -------------------------------------------------------------------------------- /src/Illuminate/Auth/SessionGuard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Auth/SessionGuard.php -------------------------------------------------------------------------------- /src/Illuminate/Auth/TokenGuard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Auth/TokenGuard.php -------------------------------------------------------------------------------- /src/Illuminate/Auth/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Auth/composer.json -------------------------------------------------------------------------------- /src/Illuminate/Broadcasting/AnonymousEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Broadcasting/AnonymousEvent.php -------------------------------------------------------------------------------- /src/Illuminate/Broadcasting/BroadcastController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Broadcasting/BroadcastController.php -------------------------------------------------------------------------------- /src/Illuminate/Broadcasting/BroadcastEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Broadcasting/BroadcastEvent.php -------------------------------------------------------------------------------- /src/Illuminate/Broadcasting/BroadcastException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Broadcasting/BroadcastException.php -------------------------------------------------------------------------------- /src/Illuminate/Broadcasting/BroadcastManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Broadcasting/BroadcastManager.php -------------------------------------------------------------------------------- /src/Illuminate/Broadcasting/Channel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Broadcasting/Channel.php -------------------------------------------------------------------------------- /src/Illuminate/Broadcasting/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Broadcasting/LICENSE.md -------------------------------------------------------------------------------- /src/Illuminate/Broadcasting/PendingBroadcast.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Broadcasting/PendingBroadcast.php -------------------------------------------------------------------------------- /src/Illuminate/Broadcasting/PresenceChannel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Broadcasting/PresenceChannel.php -------------------------------------------------------------------------------- /src/Illuminate/Broadcasting/PrivateChannel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Broadcasting/PrivateChannel.php -------------------------------------------------------------------------------- /src/Illuminate/Broadcasting/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Broadcasting/composer.json -------------------------------------------------------------------------------- /src/Illuminate/Bus/Batch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Bus/Batch.php -------------------------------------------------------------------------------- /src/Illuminate/Bus/BatchFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Bus/BatchFactory.php -------------------------------------------------------------------------------- /src/Illuminate/Bus/BatchRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Bus/BatchRepository.php -------------------------------------------------------------------------------- /src/Illuminate/Bus/Batchable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Bus/Batchable.php -------------------------------------------------------------------------------- /src/Illuminate/Bus/BusServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Bus/BusServiceProvider.php -------------------------------------------------------------------------------- /src/Illuminate/Bus/ChainedBatch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Bus/ChainedBatch.php -------------------------------------------------------------------------------- /src/Illuminate/Bus/DatabaseBatchRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Bus/DatabaseBatchRepository.php -------------------------------------------------------------------------------- /src/Illuminate/Bus/Dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Bus/Dispatcher.php -------------------------------------------------------------------------------- /src/Illuminate/Bus/DynamoBatchRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Bus/DynamoBatchRepository.php -------------------------------------------------------------------------------- /src/Illuminate/Bus/Events/BatchDispatched.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Bus/Events/BatchDispatched.php -------------------------------------------------------------------------------- /src/Illuminate/Bus/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Bus/LICENSE.md -------------------------------------------------------------------------------- /src/Illuminate/Bus/PendingBatch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Bus/PendingBatch.php -------------------------------------------------------------------------------- /src/Illuminate/Bus/PrunableBatchRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Bus/PrunableBatchRepository.php -------------------------------------------------------------------------------- /src/Illuminate/Bus/Queueable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Bus/Queueable.php -------------------------------------------------------------------------------- /src/Illuminate/Bus/UniqueLock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Bus/UniqueLock.php -------------------------------------------------------------------------------- /src/Illuminate/Bus/UpdatedBatchJobCounts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Bus/UpdatedBatchJobCounts.php -------------------------------------------------------------------------------- /src/Illuminate/Bus/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Bus/composer.json -------------------------------------------------------------------------------- /src/Illuminate/Cache/ApcStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Cache/ApcStore.php -------------------------------------------------------------------------------- /src/Illuminate/Cache/ApcWrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Cache/ApcWrapper.php -------------------------------------------------------------------------------- /src/Illuminate/Cache/ArrayLock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Cache/ArrayLock.php -------------------------------------------------------------------------------- /src/Illuminate/Cache/ArrayStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Cache/ArrayStore.php -------------------------------------------------------------------------------- /src/Illuminate/Cache/CacheLock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Cache/CacheLock.php -------------------------------------------------------------------------------- /src/Illuminate/Cache/CacheManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Cache/CacheManager.php -------------------------------------------------------------------------------- /src/Illuminate/Cache/CacheServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Cache/CacheServiceProvider.php -------------------------------------------------------------------------------- /src/Illuminate/Cache/Console/CacheTableCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Cache/Console/CacheTableCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Cache/Console/ClearCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Cache/Console/ClearCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Cache/Console/ForgetCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Cache/Console/ForgetCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Cache/Console/stubs/cache.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Cache/Console/stubs/cache.stub -------------------------------------------------------------------------------- /src/Illuminate/Cache/DatabaseLock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Cache/DatabaseLock.php -------------------------------------------------------------------------------- /src/Illuminate/Cache/DatabaseStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Cache/DatabaseStore.php -------------------------------------------------------------------------------- /src/Illuminate/Cache/DynamoDbLock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Cache/DynamoDbLock.php -------------------------------------------------------------------------------- /src/Illuminate/Cache/DynamoDbStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Cache/DynamoDbStore.php -------------------------------------------------------------------------------- /src/Illuminate/Cache/Events/CacheEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Cache/Events/CacheEvent.php -------------------------------------------------------------------------------- /src/Illuminate/Cache/Events/CacheHit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Cache/Events/CacheHit.php -------------------------------------------------------------------------------- /src/Illuminate/Cache/Events/CacheMissed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Cache/Events/CacheMissed.php -------------------------------------------------------------------------------- /src/Illuminate/Cache/Events/ForgettingKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Cache/Events/ForgettingKey.php -------------------------------------------------------------------------------- /src/Illuminate/Cache/Events/KeyForgetFailed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Cache/Events/KeyForgetFailed.php -------------------------------------------------------------------------------- /src/Illuminate/Cache/Events/KeyForgotten.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Cache/Events/KeyForgotten.php -------------------------------------------------------------------------------- /src/Illuminate/Cache/Events/KeyWriteFailed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Cache/Events/KeyWriteFailed.php -------------------------------------------------------------------------------- /src/Illuminate/Cache/Events/KeyWritten.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Cache/Events/KeyWritten.php -------------------------------------------------------------------------------- /src/Illuminate/Cache/Events/RetrievingKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Cache/Events/RetrievingKey.php -------------------------------------------------------------------------------- /src/Illuminate/Cache/Events/RetrievingManyKeys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Cache/Events/RetrievingManyKeys.php -------------------------------------------------------------------------------- /src/Illuminate/Cache/Events/WritingKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Cache/Events/WritingKey.php -------------------------------------------------------------------------------- /src/Illuminate/Cache/Events/WritingManyKeys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Cache/Events/WritingManyKeys.php -------------------------------------------------------------------------------- /src/Illuminate/Cache/FileLock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Cache/FileLock.php -------------------------------------------------------------------------------- /src/Illuminate/Cache/FileStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Cache/FileStore.php -------------------------------------------------------------------------------- /src/Illuminate/Cache/HasCacheLock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Cache/HasCacheLock.php -------------------------------------------------------------------------------- /src/Illuminate/Cache/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Cache/LICENSE.md -------------------------------------------------------------------------------- /src/Illuminate/Cache/Lock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Cache/Lock.php -------------------------------------------------------------------------------- /src/Illuminate/Cache/LuaScripts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Cache/LuaScripts.php -------------------------------------------------------------------------------- /src/Illuminate/Cache/MemcachedConnector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Cache/MemcachedConnector.php -------------------------------------------------------------------------------- /src/Illuminate/Cache/MemcachedLock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Cache/MemcachedLock.php -------------------------------------------------------------------------------- /src/Illuminate/Cache/MemcachedStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Cache/MemcachedStore.php -------------------------------------------------------------------------------- /src/Illuminate/Cache/NoLock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Cache/NoLock.php -------------------------------------------------------------------------------- /src/Illuminate/Cache/NullStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Cache/NullStore.php -------------------------------------------------------------------------------- /src/Illuminate/Cache/PhpRedisLock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Cache/PhpRedisLock.php -------------------------------------------------------------------------------- /src/Illuminate/Cache/RateLimiter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Cache/RateLimiter.php -------------------------------------------------------------------------------- /src/Illuminate/Cache/RateLimiting/GlobalLimit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Cache/RateLimiting/GlobalLimit.php -------------------------------------------------------------------------------- /src/Illuminate/Cache/RateLimiting/Limit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Cache/RateLimiting/Limit.php -------------------------------------------------------------------------------- /src/Illuminate/Cache/RateLimiting/Unlimited.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Cache/RateLimiting/Unlimited.php -------------------------------------------------------------------------------- /src/Illuminate/Cache/RedisLock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Cache/RedisLock.php -------------------------------------------------------------------------------- /src/Illuminate/Cache/RedisStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Cache/RedisStore.php -------------------------------------------------------------------------------- /src/Illuminate/Cache/RedisTagSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Cache/RedisTagSet.php -------------------------------------------------------------------------------- /src/Illuminate/Cache/RedisTaggedCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Cache/RedisTaggedCache.php -------------------------------------------------------------------------------- /src/Illuminate/Cache/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Cache/Repository.php -------------------------------------------------------------------------------- /src/Illuminate/Cache/RetrievesMultipleKeys.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Cache/RetrievesMultipleKeys.php -------------------------------------------------------------------------------- /src/Illuminate/Cache/TagSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Cache/TagSet.php -------------------------------------------------------------------------------- /src/Illuminate/Cache/TaggableStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Cache/TaggableStore.php -------------------------------------------------------------------------------- /src/Illuminate/Cache/TaggedCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Cache/TaggedCache.php -------------------------------------------------------------------------------- /src/Illuminate/Cache/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Cache/composer.json -------------------------------------------------------------------------------- /src/Illuminate/Collections/Arr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Collections/Arr.php -------------------------------------------------------------------------------- /src/Illuminate/Collections/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Collections/Collection.php -------------------------------------------------------------------------------- /src/Illuminate/Collections/Enumerable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Collections/Enumerable.php -------------------------------------------------------------------------------- /src/Illuminate/Collections/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Collections/LICENSE.md -------------------------------------------------------------------------------- /src/Illuminate/Collections/LazyCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Collections/LazyCollection.php -------------------------------------------------------------------------------- /src/Illuminate/Collections/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Collections/composer.json -------------------------------------------------------------------------------- /src/Illuminate/Collections/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Collections/helpers.php -------------------------------------------------------------------------------- /src/Illuminate/Conditionable/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Conditionable/LICENSE.md -------------------------------------------------------------------------------- /src/Illuminate/Conditionable/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Conditionable/composer.json -------------------------------------------------------------------------------- /src/Illuminate/Config/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Config/LICENSE.md -------------------------------------------------------------------------------- /src/Illuminate/Config/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Config/Repository.php -------------------------------------------------------------------------------- /src/Illuminate/Config/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Config/composer.json -------------------------------------------------------------------------------- /src/Illuminate/Console/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Console/Application.php -------------------------------------------------------------------------------- /src/Illuminate/Console/BufferedConsoleOutput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Console/BufferedConsoleOutput.php -------------------------------------------------------------------------------- /src/Illuminate/Console/CacheCommandMutex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Console/CacheCommandMutex.php -------------------------------------------------------------------------------- /src/Illuminate/Console/Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Console/Command.php -------------------------------------------------------------------------------- /src/Illuminate/Console/CommandMutex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Console/CommandMutex.php -------------------------------------------------------------------------------- /src/Illuminate/Console/Concerns/CallsCommands.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Console/Concerns/CallsCommands.php -------------------------------------------------------------------------------- /src/Illuminate/Console/Concerns/HasParameters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Console/Concerns/HasParameters.php -------------------------------------------------------------------------------- /src/Illuminate/Console/Concerns/InteractsWithIO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Console/Concerns/InteractsWithIO.php -------------------------------------------------------------------------------- /src/Illuminate/Console/ConfirmableTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Console/ConfirmableTrait.php -------------------------------------------------------------------------------- /src/Illuminate/Console/ContainerCommandLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Console/ContainerCommandLoader.php -------------------------------------------------------------------------------- /src/Illuminate/Console/Contracts/NewLineAware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Console/Contracts/NewLineAware.php -------------------------------------------------------------------------------- /src/Illuminate/Console/Events/ArtisanStarting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Console/Events/ArtisanStarting.php -------------------------------------------------------------------------------- /src/Illuminate/Console/Events/CommandFinished.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Console/Events/CommandFinished.php -------------------------------------------------------------------------------- /src/Illuminate/Console/Events/CommandStarting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Console/Events/CommandStarting.php -------------------------------------------------------------------------------- /src/Illuminate/Console/GeneratorCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Console/GeneratorCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Console/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Console/LICENSE.md -------------------------------------------------------------------------------- /src/Illuminate/Console/ManuallyFailedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Console/ManuallyFailedException.php -------------------------------------------------------------------------------- /src/Illuminate/Console/OutputStyle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Console/OutputStyle.php -------------------------------------------------------------------------------- /src/Illuminate/Console/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Console/Parser.php -------------------------------------------------------------------------------- /src/Illuminate/Console/Prohibitable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Console/Prohibitable.php -------------------------------------------------------------------------------- /src/Illuminate/Console/QuestionHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Console/QuestionHelper.php -------------------------------------------------------------------------------- /src/Illuminate/Console/Scheduling/CacheAware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Console/Scheduling/CacheAware.php -------------------------------------------------------------------------------- /src/Illuminate/Console/Scheduling/CallbackEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Console/Scheduling/CallbackEvent.php -------------------------------------------------------------------------------- /src/Illuminate/Console/Scheduling/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Console/Scheduling/Event.php -------------------------------------------------------------------------------- /src/Illuminate/Console/Scheduling/EventMutex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Console/Scheduling/EventMutex.php -------------------------------------------------------------------------------- /src/Illuminate/Console/Scheduling/Schedule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Console/Scheduling/Schedule.php -------------------------------------------------------------------------------- /src/Illuminate/Console/Signals.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Console/Signals.php -------------------------------------------------------------------------------- /src/Illuminate/Console/View/Components/Alert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Console/View/Components/Alert.php -------------------------------------------------------------------------------- /src/Illuminate/Console/View/Components/Ask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Console/View/Components/Ask.php -------------------------------------------------------------------------------- /src/Illuminate/Console/View/Components/Choice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Console/View/Components/Choice.php -------------------------------------------------------------------------------- /src/Illuminate/Console/View/Components/Confirm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Console/View/Components/Confirm.php -------------------------------------------------------------------------------- /src/Illuminate/Console/View/Components/Error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Console/View/Components/Error.php -------------------------------------------------------------------------------- /src/Illuminate/Console/View/Components/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Console/View/Components/Factory.php -------------------------------------------------------------------------------- /src/Illuminate/Console/View/Components/Info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Console/View/Components/Info.php -------------------------------------------------------------------------------- /src/Illuminate/Console/View/Components/Line.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Console/View/Components/Line.php -------------------------------------------------------------------------------- /src/Illuminate/Console/View/Components/Secret.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Console/View/Components/Secret.php -------------------------------------------------------------------------------- /src/Illuminate/Console/View/Components/Success.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Console/View/Components/Success.php -------------------------------------------------------------------------------- /src/Illuminate/Console/View/Components/Task.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Console/View/Components/Task.php -------------------------------------------------------------------------------- /src/Illuminate/Console/View/Components/Warn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Console/View/Components/Warn.php -------------------------------------------------------------------------------- /src/Illuminate/Console/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Console/composer.json -------------------------------------------------------------------------------- /src/Illuminate/Container/Attributes/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Container/Attributes/Config.php -------------------------------------------------------------------------------- /src/Illuminate/Container/BoundMethod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Container/BoundMethod.php -------------------------------------------------------------------------------- /src/Illuminate/Container/Container.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Container/Container.php -------------------------------------------------------------------------------- /src/Illuminate/Container/EntryNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Container/EntryNotFoundException.php -------------------------------------------------------------------------------- /src/Illuminate/Container/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Container/LICENSE.md -------------------------------------------------------------------------------- /src/Illuminate/Container/RewindableGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Container/RewindableGenerator.php -------------------------------------------------------------------------------- /src/Illuminate/Container/Util.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Container/Util.php -------------------------------------------------------------------------------- /src/Illuminate/Container/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Container/composer.json -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Auth/Access/Gate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Auth/Access/Gate.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Auth/Authenticatable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Auth/Authenticatable.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Auth/CanResetPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Auth/CanResetPassword.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Auth/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Auth/Factory.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Auth/Guard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Auth/Guard.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Auth/MustVerifyEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Auth/MustVerifyEmail.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Auth/PasswordBroker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Auth/PasswordBroker.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Auth/StatefulGuard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Auth/StatefulGuard.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Auth/SupportsBasicAuth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Auth/SupportsBasicAuth.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Auth/UserProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Auth/UserProvider.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Broadcasting/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Broadcasting/Factory.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Bus/Dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Bus/Dispatcher.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Bus/QueueingDispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Bus/QueueingDispatcher.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Cache/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Cache/Factory.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Cache/Lock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Cache/Lock.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Cache/LockProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Cache/LockProvider.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Cache/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Cache/Repository.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Cache/Store.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Cache/Store.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Config/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Config/Repository.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Console/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Console/Application.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Console/Isolatable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Console/Isolatable.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Console/Kernel.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Container/Container.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Container/Container.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Cookie/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Cookie/Factory.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Cookie/QueueingFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Cookie/QueueingFactory.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Database/Query/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Database/Query/Builder.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Debug/ExceptionHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Debug/ExceptionHandler.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Debug/ShouldntReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Debug/ShouldntReport.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Encryption/Encrypter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Encryption/Encrypter.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Events/Dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Events/Dispatcher.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Filesystem/Cloud.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Filesystem/Cloud.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Filesystem/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Filesystem/Factory.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Filesystem/Filesystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Filesystem/Filesystem.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Foundation/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Foundation/Application.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Hashing/Hasher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Hashing/Hasher.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Http/Kernel.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/LICENSE.md -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Mail/Attachable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Mail/Attachable.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Mail/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Mail/Factory.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Mail/MailQueue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Mail/MailQueue.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Mail/Mailable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Mail/Mailable.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Mail/Mailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Mail/Mailer.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Notifications/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Notifications/Factory.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Pagination/Paginator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Pagination/Paginator.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Pipeline/Hub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Pipeline/Hub.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Pipeline/Pipeline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Pipeline/Pipeline.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Process/InvokedProcess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Process/InvokedProcess.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Process/ProcessResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Process/ProcessResult.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Queue/ClearableQueue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Queue/ClearableQueue.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Queue/EntityResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Queue/EntityResolver.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Queue/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Queue/Factory.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Queue/Job.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Queue/Job.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Queue/Monitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Queue/Monitor.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Queue/Queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Queue/Queue.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Queue/QueueableEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Queue/QueueableEntity.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Queue/ShouldBeUnique.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Queue/ShouldBeUnique.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Queue/ShouldQueue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Queue/ShouldQueue.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Redis/Connection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Redis/Connection.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Redis/Connector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Redis/Connector.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Redis/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Redis/Factory.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Routing/Registrar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Routing/Registrar.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Routing/UrlGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Routing/UrlGenerator.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Routing/UrlRoutable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Routing/UrlRoutable.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Session/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Session/Session.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Support/Arrayable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Support/Arrayable.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Support/Htmlable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Support/Htmlable.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Support/Jsonable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Support/Jsonable.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Support/MessageBag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Support/MessageBag.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Support/Renderable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Support/Renderable.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Support/Responsable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Support/Responsable.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Support/ValidatedData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Support/ValidatedData.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Translation/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Translation/Loader.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Translation/Translator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Translation/Translator.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Validation/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Validation/Factory.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Validation/Rule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Validation/Rule.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/Validation/Validator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/Validation/Validator.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/View/Engine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/View/Engine.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/View/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/View/Factory.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/View/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/View/View.php -------------------------------------------------------------------------------- /src/Illuminate/Contracts/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Contracts/composer.json -------------------------------------------------------------------------------- /src/Illuminate/Cookie/CookieJar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Cookie/CookieJar.php -------------------------------------------------------------------------------- /src/Illuminate/Cookie/CookieServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Cookie/CookieServiceProvider.php -------------------------------------------------------------------------------- /src/Illuminate/Cookie/CookieValuePrefix.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Cookie/CookieValuePrefix.php -------------------------------------------------------------------------------- /src/Illuminate/Cookie/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Cookie/LICENSE.md -------------------------------------------------------------------------------- /src/Illuminate/Cookie/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Cookie/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /src/Illuminate/Cookie/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Cookie/composer.json -------------------------------------------------------------------------------- /src/Illuminate/Database/Capsule/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/Capsule/Manager.php -------------------------------------------------------------------------------- /src/Illuminate/Database/Concerns/BuildsQueries.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/Concerns/BuildsQueries.php -------------------------------------------------------------------------------- /src/Illuminate/Database/ConfigurationUrlParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/ConfigurationUrlParser.php -------------------------------------------------------------------------------- /src/Illuminate/Database/Connection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/Connection.php -------------------------------------------------------------------------------- /src/Illuminate/Database/ConnectionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/ConnectionInterface.php -------------------------------------------------------------------------------- /src/Illuminate/Database/ConnectionResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/ConnectionResolver.php -------------------------------------------------------------------------------- /src/Illuminate/Database/Connectors/Connector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/Connectors/Connector.php -------------------------------------------------------------------------------- /src/Illuminate/Database/Console/DbCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/Console/DbCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Database/Console/DumpCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/Console/DumpCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Database/Console/MonitorCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/Console/MonitorCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Database/Console/PruneCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/Console/PruneCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Database/Console/ShowCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/Console/ShowCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Database/Console/TableCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/Console/TableCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Database/Console/WipeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/Console/WipeCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Database/DatabaseManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/DatabaseManager.php -------------------------------------------------------------------------------- /src/Illuminate/Database/DatabaseServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/DatabaseServiceProvider.php -------------------------------------------------------------------------------- /src/Illuminate/Database/DeadlockException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/DeadlockException.php -------------------------------------------------------------------------------- /src/Illuminate/Database/DetectsLostConnections.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/DetectsLostConnections.php -------------------------------------------------------------------------------- /src/Illuminate/Database/Eloquent/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/Eloquent/Builder.php -------------------------------------------------------------------------------- /src/Illuminate/Database/Eloquent/Casts/Json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/Eloquent/Casts/Json.php -------------------------------------------------------------------------------- /src/Illuminate/Database/Eloquent/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/Eloquent/Collection.php -------------------------------------------------------------------------------- /src/Illuminate/Database/Eloquent/HasBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/Eloquent/HasBuilder.php -------------------------------------------------------------------------------- /src/Illuminate/Database/Eloquent/HasCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/Eloquent/HasCollection.php -------------------------------------------------------------------------------- /src/Illuminate/Database/Eloquent/MassPrunable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/Eloquent/MassPrunable.php -------------------------------------------------------------------------------- /src/Illuminate/Database/Eloquent/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/Eloquent/Model.php -------------------------------------------------------------------------------- /src/Illuminate/Database/Eloquent/Prunable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/Eloquent/Prunable.php -------------------------------------------------------------------------------- /src/Illuminate/Database/Eloquent/Scope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/Eloquent/Scope.php -------------------------------------------------------------------------------- /src/Illuminate/Database/Eloquent/SoftDeletes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/Eloquent/SoftDeletes.php -------------------------------------------------------------------------------- /src/Illuminate/Database/Events/ConnectionEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/Events/ConnectionEvent.php -------------------------------------------------------------------------------- /src/Illuminate/Database/Events/DatabaseBusy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/Events/DatabaseBusy.php -------------------------------------------------------------------------------- /src/Illuminate/Database/Events/MigrationEnded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/Events/MigrationEnded.php -------------------------------------------------------------------------------- /src/Illuminate/Database/Events/MigrationEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/Events/MigrationEvent.php -------------------------------------------------------------------------------- /src/Illuminate/Database/Events/MigrationStarted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/Events/MigrationStarted.php -------------------------------------------------------------------------------- /src/Illuminate/Database/Events/MigrationsEnded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/Events/MigrationsEnded.php -------------------------------------------------------------------------------- /src/Illuminate/Database/Events/MigrationsEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/Events/MigrationsEvent.php -------------------------------------------------------------------------------- /src/Illuminate/Database/Events/ModelsPruned.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/Events/ModelsPruned.php -------------------------------------------------------------------------------- /src/Illuminate/Database/Events/QueryExecuted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/Events/QueryExecuted.php -------------------------------------------------------------------------------- /src/Illuminate/Database/Events/SchemaDumped.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/Events/SchemaDumped.php -------------------------------------------------------------------------------- /src/Illuminate/Database/Events/SchemaLoaded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/Events/SchemaLoaded.php -------------------------------------------------------------------------------- /src/Illuminate/Database/Grammar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/Grammar.php -------------------------------------------------------------------------------- /src/Illuminate/Database/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/LICENSE.md -------------------------------------------------------------------------------- /src/Illuminate/Database/LostConnectionException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/LostConnectionException.php -------------------------------------------------------------------------------- /src/Illuminate/Database/MariaDbConnection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/MariaDbConnection.php -------------------------------------------------------------------------------- /src/Illuminate/Database/Migrations/Migration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/Migrations/Migration.php -------------------------------------------------------------------------------- /src/Illuminate/Database/Migrations/Migrator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/Migrations/Migrator.php -------------------------------------------------------------------------------- /src/Illuminate/Database/MySqlConnection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/MySqlConnection.php -------------------------------------------------------------------------------- /src/Illuminate/Database/PostgresConnection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/PostgresConnection.php -------------------------------------------------------------------------------- /src/Illuminate/Database/Query/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/Query/Builder.php -------------------------------------------------------------------------------- /src/Illuminate/Database/Query/Expression.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/Query/Expression.php -------------------------------------------------------------------------------- /src/Illuminate/Database/Query/Grammars/Grammar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/Query/Grammars/Grammar.php -------------------------------------------------------------------------------- /src/Illuminate/Database/Query/IndexHint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/Query/IndexHint.php -------------------------------------------------------------------------------- /src/Illuminate/Database/Query/JoinClause.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/Query/JoinClause.php -------------------------------------------------------------------------------- /src/Illuminate/Database/Query/JoinLateralClause.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/Query/JoinLateralClause.php -------------------------------------------------------------------------------- /src/Illuminate/Database/QueryException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/QueryException.php -------------------------------------------------------------------------------- /src/Illuminate/Database/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/README.md -------------------------------------------------------------------------------- /src/Illuminate/Database/SQLiteConnection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/SQLiteConnection.php -------------------------------------------------------------------------------- /src/Illuminate/Database/Schema/Blueprint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/Schema/Blueprint.php -------------------------------------------------------------------------------- /src/Illuminate/Database/Schema/BlueprintState.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/Schema/BlueprintState.php -------------------------------------------------------------------------------- /src/Illuminate/Database/Schema/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/Schema/Builder.php -------------------------------------------------------------------------------- /src/Illuminate/Database/Schema/ColumnDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/Schema/ColumnDefinition.php -------------------------------------------------------------------------------- /src/Illuminate/Database/Schema/Grammars/Grammar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/Schema/Grammars/Grammar.php -------------------------------------------------------------------------------- /src/Illuminate/Database/Schema/IndexDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/Schema/IndexDefinition.php -------------------------------------------------------------------------------- /src/Illuminate/Database/Schema/MariaDbBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/Schema/MariaDbBuilder.php -------------------------------------------------------------------------------- /src/Illuminate/Database/Schema/MySqlBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/Schema/MySqlBuilder.php -------------------------------------------------------------------------------- /src/Illuminate/Database/Schema/MySqlSchemaState.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/Schema/MySqlSchemaState.php -------------------------------------------------------------------------------- /src/Illuminate/Database/Schema/PostgresBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/Schema/PostgresBuilder.php -------------------------------------------------------------------------------- /src/Illuminate/Database/Schema/SQLiteBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/Schema/SQLiteBuilder.php -------------------------------------------------------------------------------- /src/Illuminate/Database/Schema/SchemaState.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/Schema/SchemaState.php -------------------------------------------------------------------------------- /src/Illuminate/Database/Schema/SqlServerBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/Schema/SqlServerBuilder.php -------------------------------------------------------------------------------- /src/Illuminate/Database/Seeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/Seeder.php -------------------------------------------------------------------------------- /src/Illuminate/Database/SqlServerConnection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/SqlServerConnection.php -------------------------------------------------------------------------------- /src/Illuminate/Database/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Database/composer.json -------------------------------------------------------------------------------- /src/Illuminate/Encryption/Encrypter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Encryption/Encrypter.php -------------------------------------------------------------------------------- /src/Illuminate/Encryption/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Encryption/LICENSE.md -------------------------------------------------------------------------------- /src/Illuminate/Encryption/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Encryption/composer.json -------------------------------------------------------------------------------- /src/Illuminate/Events/CallQueuedListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Events/CallQueuedListener.php -------------------------------------------------------------------------------- /src/Illuminate/Events/Dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Events/Dispatcher.php -------------------------------------------------------------------------------- /src/Illuminate/Events/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Events/EventServiceProvider.php -------------------------------------------------------------------------------- /src/Illuminate/Events/InvokeQueuedClosure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Events/InvokeQueuedClosure.php -------------------------------------------------------------------------------- /src/Illuminate/Events/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Events/LICENSE.md -------------------------------------------------------------------------------- /src/Illuminate/Events/NullDispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Events/NullDispatcher.php -------------------------------------------------------------------------------- /src/Illuminate/Events/QueuedClosure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Events/QueuedClosure.php -------------------------------------------------------------------------------- /src/Illuminate/Events/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Events/composer.json -------------------------------------------------------------------------------- /src/Illuminate/Events/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Events/functions.php -------------------------------------------------------------------------------- /src/Illuminate/Filesystem/AwsS3V3Adapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Filesystem/AwsS3V3Adapter.php -------------------------------------------------------------------------------- /src/Illuminate/Filesystem/Filesystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Filesystem/Filesystem.php -------------------------------------------------------------------------------- /src/Illuminate/Filesystem/FilesystemAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Filesystem/FilesystemAdapter.php -------------------------------------------------------------------------------- /src/Illuminate/Filesystem/FilesystemManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Filesystem/FilesystemManager.php -------------------------------------------------------------------------------- /src/Illuminate/Filesystem/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Filesystem/LICENSE.md -------------------------------------------------------------------------------- /src/Illuminate/Filesystem/LockableFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Filesystem/LockableFile.php -------------------------------------------------------------------------------- /src/Illuminate/Filesystem/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Filesystem/composer.json -------------------------------------------------------------------------------- /src/Illuminate/Filesystem/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Filesystem/functions.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/AliasLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Foundation/AliasLoader.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Foundation/Application.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Auth/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Foundation/Auth/User.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Bus/Dispatchable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Foundation/Bus/Dispatchable.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Bus/DispatchesJobs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Foundation/Bus/DispatchesJobs.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Bus/PendingChain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Foundation/Bus/PendingChain.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Bus/PendingDispatch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Foundation/Bus/PendingDispatch.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/ComposerScripts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Foundation/ComposerScripts.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/AboutCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Foundation/Console/AboutCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/CliDumper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Foundation/Console/CliDumper.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/DocsCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Foundation/Console/DocsCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/DownCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Foundation/Console/DownCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Foundation/Console/Kernel.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/QueuedCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Foundation/Console/QueuedCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/ServeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Foundation/Console/ServeCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/UpCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Foundation/Console/UpCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/cast.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Foundation/Console/stubs/cast.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/class.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Foundation/Console/stubs/class.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/enum.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Foundation/Console/stubs/enum.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/event.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Foundation/Console/stubs/event.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/job.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Foundation/Console/stubs/job.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/mail.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Foundation/Console/stubs/mail.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/model.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Foundation/Console/stubs/model.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/pest.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Foundation/Console/stubs/pest.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/policy.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Foundation/Console/stubs/policy.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/routes.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Foundation/Console/stubs/routes.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/rule.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Foundation/Console/stubs/rule.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/scope.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Foundation/Console/stubs/scope.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/test.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Foundation/Console/stubs/test.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/trait.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Foundation/Console/stubs/trait.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Console/stubs/view.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Foundation/Console/stubs/view.stub -------------------------------------------------------------------------------- /src/Illuminate/Foundation/EnvironmentDetector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Foundation/EnvironmentDetector.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Events/DiscoverEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Foundation/Events/DiscoverEvents.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Events/Dispatchable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Foundation/Events/Dispatchable.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Events/LocaleUpdated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Foundation/Events/LocaleUpdated.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Events/Terminating.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Foundation/Events/Terminating.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Foundation/Exceptions/Handler.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Http/FormRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Foundation/Http/FormRequest.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Http/HtmlDumper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Foundation/Http/HtmlDumper.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Foundation/Http/Kernel.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Inspiring.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Foundation/Inspiring.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Mix.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Foundation/Mix.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/PackageManifest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Foundation/PackageManifest.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Precognition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Foundation/Precognition.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/ProviderRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Foundation/ProviderRepository.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Queue/Queueable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Foundation/Queue/Queueable.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Testing/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Foundation/Testing/TestCase.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Testing/WithFaker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Foundation/Testing/WithFaker.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Testing/Wormhole.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Foundation/Testing/Wormhole.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/Vite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Foundation/Vite.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/ViteException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Foundation/ViteException.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Foundation/helpers.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/resources/exceptions/renderer/dark-mode.css: -------------------------------------------------------------------------------- 1 | @import 'highlight.js/styles/atom-one-dark.min.css'; 2 | -------------------------------------------------------------------------------- /src/Illuminate/Foundation/resources/exceptions/renderer/light-mode.css: -------------------------------------------------------------------------------- 1 | @import 'highlight.js/styles/github.min.css'; 2 | -------------------------------------------------------------------------------- /src/Illuminate/Foundation/resources/server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Foundation/resources/server.php -------------------------------------------------------------------------------- /src/Illuminate/Foundation/stubs/facade.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Foundation/stubs/facade.stub -------------------------------------------------------------------------------- /src/Illuminate/Hashing/AbstractHasher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Hashing/AbstractHasher.php -------------------------------------------------------------------------------- /src/Illuminate/Hashing/Argon2IdHasher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Hashing/Argon2IdHasher.php -------------------------------------------------------------------------------- /src/Illuminate/Hashing/ArgonHasher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Hashing/ArgonHasher.php -------------------------------------------------------------------------------- /src/Illuminate/Hashing/BcryptHasher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Hashing/BcryptHasher.php -------------------------------------------------------------------------------- /src/Illuminate/Hashing/HashManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Hashing/HashManager.php -------------------------------------------------------------------------------- /src/Illuminate/Hashing/HashServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Hashing/HashServiceProvider.php -------------------------------------------------------------------------------- /src/Illuminate/Hashing/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Hashing/LICENSE.md -------------------------------------------------------------------------------- /src/Illuminate/Hashing/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Hashing/composer.json -------------------------------------------------------------------------------- /src/Illuminate/Http/Client/ConnectionException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Http/Client/ConnectionException.php -------------------------------------------------------------------------------- /src/Illuminate/Http/Client/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Http/Client/Factory.php -------------------------------------------------------------------------------- /src/Illuminate/Http/Client/HttpClientException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Http/Client/HttpClientException.php -------------------------------------------------------------------------------- /src/Illuminate/Http/Client/PendingRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Http/Client/PendingRequest.php -------------------------------------------------------------------------------- /src/Illuminate/Http/Client/Pool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Http/Client/Pool.php -------------------------------------------------------------------------------- /src/Illuminate/Http/Client/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Http/Client/Request.php -------------------------------------------------------------------------------- /src/Illuminate/Http/Client/RequestException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Http/Client/RequestException.php -------------------------------------------------------------------------------- /src/Illuminate/Http/Client/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Http/Client/Response.php -------------------------------------------------------------------------------- /src/Illuminate/Http/Client/ResponseSequence.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Http/Client/ResponseSequence.php -------------------------------------------------------------------------------- /src/Illuminate/Http/Concerns/CanBePrecognitive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Http/Concerns/CanBePrecognitive.php -------------------------------------------------------------------------------- /src/Illuminate/Http/Concerns/InteractsWithInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Http/Concerns/InteractsWithInput.php -------------------------------------------------------------------------------- /src/Illuminate/Http/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Http/File.php -------------------------------------------------------------------------------- /src/Illuminate/Http/FileHelpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Http/FileHelpers.php -------------------------------------------------------------------------------- /src/Illuminate/Http/JsonResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Http/JsonResponse.php -------------------------------------------------------------------------------- /src/Illuminate/Http/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Http/LICENSE.md -------------------------------------------------------------------------------- /src/Illuminate/Http/Middleware/FrameGuard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Http/Middleware/FrameGuard.php -------------------------------------------------------------------------------- /src/Illuminate/Http/Middleware/HandleCors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Http/Middleware/HandleCors.php -------------------------------------------------------------------------------- /src/Illuminate/Http/Middleware/SetCacheHeaders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Http/Middleware/SetCacheHeaders.php -------------------------------------------------------------------------------- /src/Illuminate/Http/Middleware/TrustHosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Http/Middleware/TrustHosts.php -------------------------------------------------------------------------------- /src/Illuminate/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /src/Illuminate/Http/Middleware/ValidatePostSize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Http/Middleware/ValidatePostSize.php -------------------------------------------------------------------------------- /src/Illuminate/Http/RedirectResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Http/RedirectResponse.php -------------------------------------------------------------------------------- /src/Illuminate/Http/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Http/Request.php -------------------------------------------------------------------------------- /src/Illuminate/Http/Resources/CollectsResources.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Http/Resources/CollectsResources.php -------------------------------------------------------------------------------- /src/Illuminate/Http/Resources/Json/JsonResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Http/Resources/Json/JsonResource.php -------------------------------------------------------------------------------- /src/Illuminate/Http/Resources/MergeValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Http/Resources/MergeValue.php -------------------------------------------------------------------------------- /src/Illuminate/Http/Resources/MissingValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Http/Resources/MissingValue.php -------------------------------------------------------------------------------- /src/Illuminate/Http/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Http/Response.php -------------------------------------------------------------------------------- /src/Illuminate/Http/ResponseTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Http/ResponseTrait.php -------------------------------------------------------------------------------- /src/Illuminate/Http/Testing/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Http/Testing/File.php -------------------------------------------------------------------------------- /src/Illuminate/Http/Testing/FileFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Http/Testing/FileFactory.php -------------------------------------------------------------------------------- /src/Illuminate/Http/Testing/MimeType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Http/Testing/MimeType.php -------------------------------------------------------------------------------- /src/Illuminate/Http/UploadedFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Http/UploadedFile.php -------------------------------------------------------------------------------- /src/Illuminate/Http/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Http/composer.json -------------------------------------------------------------------------------- /src/Illuminate/Log/Context/Repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Log/Context/Repository.php -------------------------------------------------------------------------------- /src/Illuminate/Log/Events/MessageLogged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Log/Events/MessageLogged.php -------------------------------------------------------------------------------- /src/Illuminate/Log/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Log/LICENSE.md -------------------------------------------------------------------------------- /src/Illuminate/Log/LogManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Log/LogManager.php -------------------------------------------------------------------------------- /src/Illuminate/Log/LogServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Log/LogServiceProvider.php -------------------------------------------------------------------------------- /src/Illuminate/Log/Logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Log/Logger.php -------------------------------------------------------------------------------- /src/Illuminate/Log/ParsesLogConfiguration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Log/ParsesLogConfiguration.php -------------------------------------------------------------------------------- /src/Illuminate/Log/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Log/composer.json -------------------------------------------------------------------------------- /src/Illuminate/Macroable/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Macroable/LICENSE.md -------------------------------------------------------------------------------- /src/Illuminate/Macroable/Traits/Macroable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Macroable/Traits/Macroable.php -------------------------------------------------------------------------------- /src/Illuminate/Macroable/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Macroable/composer.json -------------------------------------------------------------------------------- /src/Illuminate/Mail/Attachment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Mail/Attachment.php -------------------------------------------------------------------------------- /src/Illuminate/Mail/Events/MessageSending.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Mail/Events/MessageSending.php -------------------------------------------------------------------------------- /src/Illuminate/Mail/Events/MessageSent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Mail/Events/MessageSent.php -------------------------------------------------------------------------------- /src/Illuminate/Mail/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Mail/LICENSE.md -------------------------------------------------------------------------------- /src/Illuminate/Mail/MailManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Mail/MailManager.php -------------------------------------------------------------------------------- /src/Illuminate/Mail/MailServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Mail/MailServiceProvider.php -------------------------------------------------------------------------------- /src/Illuminate/Mail/Mailable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Mail/Mailable.php -------------------------------------------------------------------------------- /src/Illuminate/Mail/Mailables/Address.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Mail/Mailables/Address.php -------------------------------------------------------------------------------- /src/Illuminate/Mail/Mailables/Attachment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Mail/Mailables/Attachment.php -------------------------------------------------------------------------------- /src/Illuminate/Mail/Mailables/Content.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Mail/Mailables/Content.php -------------------------------------------------------------------------------- /src/Illuminate/Mail/Mailables/Envelope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Mail/Mailables/Envelope.php -------------------------------------------------------------------------------- /src/Illuminate/Mail/Mailables/Headers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Mail/Mailables/Headers.php -------------------------------------------------------------------------------- /src/Illuminate/Mail/Mailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Mail/Mailer.php -------------------------------------------------------------------------------- /src/Illuminate/Mail/Markdown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Mail/Markdown.php -------------------------------------------------------------------------------- /src/Illuminate/Mail/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Mail/Message.php -------------------------------------------------------------------------------- /src/Illuminate/Mail/PendingMail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Mail/PendingMail.php -------------------------------------------------------------------------------- /src/Illuminate/Mail/SendQueuedMailable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Mail/SendQueuedMailable.php -------------------------------------------------------------------------------- /src/Illuminate/Mail/SentMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Mail/SentMessage.php -------------------------------------------------------------------------------- /src/Illuminate/Mail/TextMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Mail/TextMessage.php -------------------------------------------------------------------------------- /src/Illuminate/Mail/Transport/ArrayTransport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Mail/Transport/ArrayTransport.php -------------------------------------------------------------------------------- /src/Illuminate/Mail/Transport/LogTransport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Mail/Transport/LogTransport.php -------------------------------------------------------------------------------- /src/Illuminate/Mail/Transport/ResendTransport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Mail/Transport/ResendTransport.php -------------------------------------------------------------------------------- /src/Illuminate/Mail/Transport/SesTransport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Mail/Transport/SesTransport.php -------------------------------------------------------------------------------- /src/Illuminate/Mail/Transport/SesV2Transport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Mail/Transport/SesV2Transport.php -------------------------------------------------------------------------------- /src/Illuminate/Mail/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Mail/composer.json -------------------------------------------------------------------------------- /src/Illuminate/Mail/resources/views/text/footer.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /src/Illuminate/Mail/resources/views/text/panel.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /src/Illuminate/Mail/resources/views/text/subcopy.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /src/Illuminate/Mail/resources/views/text/table.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /src/Illuminate/Notifications/Action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Notifications/Action.php -------------------------------------------------------------------------------- /src/Illuminate/Notifications/ChannelManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Notifications/ChannelManager.php -------------------------------------------------------------------------------- /src/Illuminate/Notifications/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Notifications/LICENSE.md -------------------------------------------------------------------------------- /src/Illuminate/Notifications/Notifiable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Notifications/Notifiable.php -------------------------------------------------------------------------------- /src/Illuminate/Notifications/Notification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Notifications/Notification.php -------------------------------------------------------------------------------- /src/Illuminate/Notifications/NotificationSender.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Notifications/NotificationSender.php -------------------------------------------------------------------------------- /src/Illuminate/Notifications/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Notifications/composer.json -------------------------------------------------------------------------------- /src/Illuminate/Pagination/AbstractPaginator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Pagination/AbstractPaginator.php -------------------------------------------------------------------------------- /src/Illuminate/Pagination/Cursor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Pagination/Cursor.php -------------------------------------------------------------------------------- /src/Illuminate/Pagination/CursorPaginator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Pagination/CursorPaginator.php -------------------------------------------------------------------------------- /src/Illuminate/Pagination/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Pagination/LICENSE.md -------------------------------------------------------------------------------- /src/Illuminate/Pagination/LengthAwarePaginator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Pagination/LengthAwarePaginator.php -------------------------------------------------------------------------------- /src/Illuminate/Pagination/PaginationState.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Pagination/PaginationState.php -------------------------------------------------------------------------------- /src/Illuminate/Pagination/Paginator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Pagination/Paginator.php -------------------------------------------------------------------------------- /src/Illuminate/Pagination/UrlWindow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Pagination/UrlWindow.php -------------------------------------------------------------------------------- /src/Illuminate/Pagination/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Pagination/composer.json -------------------------------------------------------------------------------- /src/Illuminate/Pipeline/Hub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Pipeline/Hub.php -------------------------------------------------------------------------------- /src/Illuminate/Pipeline/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Pipeline/LICENSE.md -------------------------------------------------------------------------------- /src/Illuminate/Pipeline/Pipeline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Pipeline/Pipeline.php -------------------------------------------------------------------------------- /src/Illuminate/Pipeline/PipelineServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Pipeline/PipelineServiceProvider.php -------------------------------------------------------------------------------- /src/Illuminate/Pipeline/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Pipeline/composer.json -------------------------------------------------------------------------------- /src/Illuminate/Process/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Process/Factory.php -------------------------------------------------------------------------------- /src/Illuminate/Process/FakeInvokedProcess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Process/FakeInvokedProcess.php -------------------------------------------------------------------------------- /src/Illuminate/Process/FakeProcessDescription.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Process/FakeProcessDescription.php -------------------------------------------------------------------------------- /src/Illuminate/Process/FakeProcessResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Process/FakeProcessResult.php -------------------------------------------------------------------------------- /src/Illuminate/Process/FakeProcessSequence.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Process/FakeProcessSequence.php -------------------------------------------------------------------------------- /src/Illuminate/Process/InvokedProcess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Process/InvokedProcess.php -------------------------------------------------------------------------------- /src/Illuminate/Process/InvokedProcessPool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Process/InvokedProcessPool.php -------------------------------------------------------------------------------- /src/Illuminate/Process/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Process/LICENSE.md -------------------------------------------------------------------------------- /src/Illuminate/Process/PendingProcess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Process/PendingProcess.php -------------------------------------------------------------------------------- /src/Illuminate/Process/Pipe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Process/Pipe.php -------------------------------------------------------------------------------- /src/Illuminate/Process/Pool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Process/Pool.php -------------------------------------------------------------------------------- /src/Illuminate/Process/ProcessPoolResults.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Process/ProcessPoolResults.php -------------------------------------------------------------------------------- /src/Illuminate/Process/ProcessResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Process/ProcessResult.php -------------------------------------------------------------------------------- /src/Illuminate/Process/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Process/composer.json -------------------------------------------------------------------------------- /src/Illuminate/Queue/BeanstalkdQueue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Queue/BeanstalkdQueue.php -------------------------------------------------------------------------------- /src/Illuminate/Queue/CallQueuedClosure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Queue/CallQueuedClosure.php -------------------------------------------------------------------------------- /src/Illuminate/Queue/CallQueuedHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Queue/CallQueuedHandler.php -------------------------------------------------------------------------------- /src/Illuminate/Queue/Capsule/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Queue/Capsule/Manager.php -------------------------------------------------------------------------------- /src/Illuminate/Queue/Connectors/SqsConnector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Queue/Connectors/SqsConnector.php -------------------------------------------------------------------------------- /src/Illuminate/Queue/Console/ClearCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Queue/Console/ClearCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Queue/Console/ListenCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Queue/Console/ListenCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Queue/Console/MonitorCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Queue/Console/MonitorCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Queue/Console/RestartCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Queue/Console/RestartCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Queue/Console/RetryCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Queue/Console/RetryCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Queue/Console/TableCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Queue/Console/TableCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Queue/Console/WorkCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Queue/Console/WorkCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Queue/Console/stubs/batches.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Queue/Console/stubs/batches.stub -------------------------------------------------------------------------------- /src/Illuminate/Queue/Console/stubs/jobs.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Queue/Console/stubs/jobs.stub -------------------------------------------------------------------------------- /src/Illuminate/Queue/DatabaseQueue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Queue/DatabaseQueue.php -------------------------------------------------------------------------------- /src/Illuminate/Queue/Events/JobFailed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Queue/Events/JobFailed.php -------------------------------------------------------------------------------- /src/Illuminate/Queue/Events/JobPopped.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Queue/Events/JobPopped.php -------------------------------------------------------------------------------- /src/Illuminate/Queue/Events/JobPopping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Queue/Events/JobPopping.php -------------------------------------------------------------------------------- /src/Illuminate/Queue/Events/JobProcessed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Queue/Events/JobProcessed.php -------------------------------------------------------------------------------- /src/Illuminate/Queue/Events/JobProcessing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Queue/Events/JobProcessing.php -------------------------------------------------------------------------------- /src/Illuminate/Queue/Events/JobQueued.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Queue/Events/JobQueued.php -------------------------------------------------------------------------------- /src/Illuminate/Queue/Events/JobQueueing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Queue/Events/JobQueueing.php -------------------------------------------------------------------------------- /src/Illuminate/Queue/Events/JobTimedOut.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Queue/Events/JobTimedOut.php -------------------------------------------------------------------------------- /src/Illuminate/Queue/Events/Looping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Queue/Events/Looping.php -------------------------------------------------------------------------------- /src/Illuminate/Queue/Events/QueueBusy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Queue/Events/QueueBusy.php -------------------------------------------------------------------------------- /src/Illuminate/Queue/Events/WorkerStopping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Queue/Events/WorkerStopping.php -------------------------------------------------------------------------------- /src/Illuminate/Queue/InteractsWithQueue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Queue/InteractsWithQueue.php -------------------------------------------------------------------------------- /src/Illuminate/Queue/InvalidPayloadException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Queue/InvalidPayloadException.php -------------------------------------------------------------------------------- /src/Illuminate/Queue/Jobs/BeanstalkdJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Queue/Jobs/BeanstalkdJob.php -------------------------------------------------------------------------------- /src/Illuminate/Queue/Jobs/DatabaseJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Queue/Jobs/DatabaseJob.php -------------------------------------------------------------------------------- /src/Illuminate/Queue/Jobs/DatabaseJobRecord.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Queue/Jobs/DatabaseJobRecord.php -------------------------------------------------------------------------------- /src/Illuminate/Queue/Jobs/FakeJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Queue/Jobs/FakeJob.php -------------------------------------------------------------------------------- /src/Illuminate/Queue/Jobs/Job.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Queue/Jobs/Job.php -------------------------------------------------------------------------------- /src/Illuminate/Queue/Jobs/JobName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Queue/Jobs/JobName.php -------------------------------------------------------------------------------- /src/Illuminate/Queue/Jobs/RedisJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Queue/Jobs/RedisJob.php -------------------------------------------------------------------------------- /src/Illuminate/Queue/Jobs/SqsJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Queue/Jobs/SqsJob.php -------------------------------------------------------------------------------- /src/Illuminate/Queue/Jobs/SyncJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Queue/Jobs/SyncJob.php -------------------------------------------------------------------------------- /src/Illuminate/Queue/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Queue/LICENSE.md -------------------------------------------------------------------------------- /src/Illuminate/Queue/Listener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Queue/Listener.php -------------------------------------------------------------------------------- /src/Illuminate/Queue/ListenerOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Queue/ListenerOptions.php -------------------------------------------------------------------------------- /src/Illuminate/Queue/LuaScripts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Queue/LuaScripts.php -------------------------------------------------------------------------------- /src/Illuminate/Queue/ManuallyFailedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Queue/ManuallyFailedException.php -------------------------------------------------------------------------------- /src/Illuminate/Queue/Middleware/RateLimited.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Queue/Middleware/RateLimited.php -------------------------------------------------------------------------------- /src/Illuminate/Queue/NullQueue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Queue/NullQueue.php -------------------------------------------------------------------------------- /src/Illuminate/Queue/Queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Queue/Queue.php -------------------------------------------------------------------------------- /src/Illuminate/Queue/QueueManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Queue/QueueManager.php -------------------------------------------------------------------------------- /src/Illuminate/Queue/QueueServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Queue/QueueServiceProvider.php -------------------------------------------------------------------------------- /src/Illuminate/Queue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Queue/README.md -------------------------------------------------------------------------------- /src/Illuminate/Queue/RedisQueue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Queue/RedisQueue.php -------------------------------------------------------------------------------- /src/Illuminate/Queue/SerializesModels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Queue/SerializesModels.php -------------------------------------------------------------------------------- /src/Illuminate/Queue/SqsQueue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Queue/SqsQueue.php -------------------------------------------------------------------------------- /src/Illuminate/Queue/SyncQueue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Queue/SyncQueue.php -------------------------------------------------------------------------------- /src/Illuminate/Queue/Worker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Queue/Worker.php -------------------------------------------------------------------------------- /src/Illuminate/Queue/WorkerOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Queue/WorkerOptions.php -------------------------------------------------------------------------------- /src/Illuminate/Queue/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Queue/composer.json -------------------------------------------------------------------------------- /src/Illuminate/Redis/Connections/Connection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Redis/Connections/Connection.php -------------------------------------------------------------------------------- /src/Illuminate/Redis/Events/CommandExecuted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Redis/Events/CommandExecuted.php -------------------------------------------------------------------------------- /src/Illuminate/Redis/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Redis/LICENSE.md -------------------------------------------------------------------------------- /src/Illuminate/Redis/RedisManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Redis/RedisManager.php -------------------------------------------------------------------------------- /src/Illuminate/Redis/RedisServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Redis/RedisServiceProvider.php -------------------------------------------------------------------------------- /src/Illuminate/Redis/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Redis/composer.json -------------------------------------------------------------------------------- /src/Illuminate/Routing/CallableDispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Routing/CallableDispatcher.php -------------------------------------------------------------------------------- /src/Illuminate/Routing/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Routing/Controller.php -------------------------------------------------------------------------------- /src/Illuminate/Routing/ControllerDispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Routing/ControllerDispatcher.php -------------------------------------------------------------------------------- /src/Illuminate/Routing/Events/RouteMatched.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Routing/Events/RouteMatched.php -------------------------------------------------------------------------------- /src/Illuminate/Routing/Events/Routing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Routing/Events/Routing.php -------------------------------------------------------------------------------- /src/Illuminate/Routing/ImplicitRouteBinding.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Routing/ImplicitRouteBinding.php -------------------------------------------------------------------------------- /src/Illuminate/Routing/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Routing/LICENSE.md -------------------------------------------------------------------------------- /src/Illuminate/Routing/Matching/UriValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Routing/Matching/UriValidator.php -------------------------------------------------------------------------------- /src/Illuminate/Routing/Pipeline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Routing/Pipeline.php -------------------------------------------------------------------------------- /src/Illuminate/Routing/RedirectController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Routing/RedirectController.php -------------------------------------------------------------------------------- /src/Illuminate/Routing/Redirector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Routing/Redirector.php -------------------------------------------------------------------------------- /src/Illuminate/Routing/ResourceRegistrar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Routing/ResourceRegistrar.php -------------------------------------------------------------------------------- /src/Illuminate/Routing/ResponseFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Routing/ResponseFactory.php -------------------------------------------------------------------------------- /src/Illuminate/Routing/Route.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Routing/Route.php -------------------------------------------------------------------------------- /src/Illuminate/Routing/RouteAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Routing/RouteAction.php -------------------------------------------------------------------------------- /src/Illuminate/Routing/RouteBinding.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Routing/RouteBinding.php -------------------------------------------------------------------------------- /src/Illuminate/Routing/RouteCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Routing/RouteCollection.php -------------------------------------------------------------------------------- /src/Illuminate/Routing/RouteFileRegistrar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Routing/RouteFileRegistrar.php -------------------------------------------------------------------------------- /src/Illuminate/Routing/RouteGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Routing/RouteGroup.php -------------------------------------------------------------------------------- /src/Illuminate/Routing/RouteParameterBinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Routing/RouteParameterBinder.php -------------------------------------------------------------------------------- /src/Illuminate/Routing/RouteRegistrar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Routing/RouteRegistrar.php -------------------------------------------------------------------------------- /src/Illuminate/Routing/RouteUri.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Routing/RouteUri.php -------------------------------------------------------------------------------- /src/Illuminate/Routing/RouteUrlGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Routing/RouteUrlGenerator.php -------------------------------------------------------------------------------- /src/Illuminate/Routing/Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Routing/Router.php -------------------------------------------------------------------------------- /src/Illuminate/Routing/SortedMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Routing/SortedMiddleware.php -------------------------------------------------------------------------------- /src/Illuminate/Routing/UrlGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Routing/UrlGenerator.php -------------------------------------------------------------------------------- /src/Illuminate/Routing/ViewController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Routing/ViewController.php -------------------------------------------------------------------------------- /src/Illuminate/Routing/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Routing/composer.json -------------------------------------------------------------------------------- /src/Illuminate/Session/ArraySessionHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Session/ArraySessionHandler.php -------------------------------------------------------------------------------- /src/Illuminate/Session/CookieSessionHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Session/CookieSessionHandler.php -------------------------------------------------------------------------------- /src/Illuminate/Session/EncryptedStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Session/EncryptedStore.php -------------------------------------------------------------------------------- /src/Illuminate/Session/FileSessionHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Session/FileSessionHandler.php -------------------------------------------------------------------------------- /src/Illuminate/Session/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Session/LICENSE.md -------------------------------------------------------------------------------- /src/Illuminate/Session/NullSessionHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Session/NullSessionHandler.php -------------------------------------------------------------------------------- /src/Illuminate/Session/SessionManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Session/SessionManager.php -------------------------------------------------------------------------------- /src/Illuminate/Session/Store.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Session/Store.php -------------------------------------------------------------------------------- /src/Illuminate/Session/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Session/composer.json -------------------------------------------------------------------------------- /src/Illuminate/Support/Benchmark.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/Benchmark.php -------------------------------------------------------------------------------- /src/Illuminate/Support/Carbon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/Carbon.php -------------------------------------------------------------------------------- /src/Illuminate/Support/Composer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/Composer.php -------------------------------------------------------------------------------- /src/Illuminate/Support/DateFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/DateFactory.php -------------------------------------------------------------------------------- /src/Illuminate/Support/DefaultProviders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/DefaultProviders.php -------------------------------------------------------------------------------- /src/Illuminate/Support/Env.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/Env.php -------------------------------------------------------------------------------- /src/Illuminate/Support/Facades/App.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/Facades/App.php -------------------------------------------------------------------------------- /src/Illuminate/Support/Facades/Artisan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/Facades/Artisan.php -------------------------------------------------------------------------------- /src/Illuminate/Support/Facades/Auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/Facades/Auth.php -------------------------------------------------------------------------------- /src/Illuminate/Support/Facades/Blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/Facades/Blade.php -------------------------------------------------------------------------------- /src/Illuminate/Support/Facades/Broadcast.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/Facades/Broadcast.php -------------------------------------------------------------------------------- /src/Illuminate/Support/Facades/Bus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/Facades/Bus.php -------------------------------------------------------------------------------- /src/Illuminate/Support/Facades/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/Facades/Cache.php -------------------------------------------------------------------------------- /src/Illuminate/Support/Facades/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/Facades/Config.php -------------------------------------------------------------------------------- /src/Illuminate/Support/Facades/Context.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/Facades/Context.php -------------------------------------------------------------------------------- /src/Illuminate/Support/Facades/Cookie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/Facades/Cookie.php -------------------------------------------------------------------------------- /src/Illuminate/Support/Facades/Crypt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/Facades/Crypt.php -------------------------------------------------------------------------------- /src/Illuminate/Support/Facades/DB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/Facades/DB.php -------------------------------------------------------------------------------- /src/Illuminate/Support/Facades/Date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/Facades/Date.php -------------------------------------------------------------------------------- /src/Illuminate/Support/Facades/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/Facades/Event.php -------------------------------------------------------------------------------- /src/Illuminate/Support/Facades/Exceptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/Facades/Exceptions.php -------------------------------------------------------------------------------- /src/Illuminate/Support/Facades/Facade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/Facades/Facade.php -------------------------------------------------------------------------------- /src/Illuminate/Support/Facades/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/Facades/File.php -------------------------------------------------------------------------------- /src/Illuminate/Support/Facades/Gate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/Facades/Gate.php -------------------------------------------------------------------------------- /src/Illuminate/Support/Facades/Hash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/Facades/Hash.php -------------------------------------------------------------------------------- /src/Illuminate/Support/Facades/Http.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/Facades/Http.php -------------------------------------------------------------------------------- /src/Illuminate/Support/Facades/Lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/Facades/Lang.php -------------------------------------------------------------------------------- /src/Illuminate/Support/Facades/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/Facades/Log.php -------------------------------------------------------------------------------- /src/Illuminate/Support/Facades/Mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/Facades/Mail.php -------------------------------------------------------------------------------- /src/Illuminate/Support/Facades/Notification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/Facades/Notification.php -------------------------------------------------------------------------------- /src/Illuminate/Support/Facades/Password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/Facades/Password.php -------------------------------------------------------------------------------- /src/Illuminate/Support/Facades/Pipeline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/Facades/Pipeline.php -------------------------------------------------------------------------------- /src/Illuminate/Support/Facades/Process.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/Facades/Process.php -------------------------------------------------------------------------------- /src/Illuminate/Support/Facades/Queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/Facades/Queue.php -------------------------------------------------------------------------------- /src/Illuminate/Support/Facades/RateLimiter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/Facades/RateLimiter.php -------------------------------------------------------------------------------- /src/Illuminate/Support/Facades/Redirect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/Facades/Redirect.php -------------------------------------------------------------------------------- /src/Illuminate/Support/Facades/Redis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/Facades/Redis.php -------------------------------------------------------------------------------- /src/Illuminate/Support/Facades/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/Facades/Request.php -------------------------------------------------------------------------------- /src/Illuminate/Support/Facades/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/Facades/Response.php -------------------------------------------------------------------------------- /src/Illuminate/Support/Facades/Route.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/Facades/Route.php -------------------------------------------------------------------------------- /src/Illuminate/Support/Facades/Schedule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/Facades/Schedule.php -------------------------------------------------------------------------------- /src/Illuminate/Support/Facades/Schema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/Facades/Schema.php -------------------------------------------------------------------------------- /src/Illuminate/Support/Facades/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/Facades/Session.php -------------------------------------------------------------------------------- /src/Illuminate/Support/Facades/Storage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/Facades/Storage.php -------------------------------------------------------------------------------- /src/Illuminate/Support/Facades/URL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/Facades/URL.php -------------------------------------------------------------------------------- /src/Illuminate/Support/Facades/Validator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/Facades/Validator.php -------------------------------------------------------------------------------- /src/Illuminate/Support/Facades/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/Facades/View.php -------------------------------------------------------------------------------- /src/Illuminate/Support/Facades/Vite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/Facades/Vite.php -------------------------------------------------------------------------------- /src/Illuminate/Support/Fluent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/Fluent.php -------------------------------------------------------------------------------- /src/Illuminate/Support/HigherOrderTapProxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/HigherOrderTapProxy.php -------------------------------------------------------------------------------- /src/Illuminate/Support/HtmlString.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/HtmlString.php -------------------------------------------------------------------------------- /src/Illuminate/Support/InteractsWithTime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/InteractsWithTime.php -------------------------------------------------------------------------------- /src/Illuminate/Support/Js.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/Js.php -------------------------------------------------------------------------------- /src/Illuminate/Support/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/LICENSE.md -------------------------------------------------------------------------------- /src/Illuminate/Support/Lottery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/Lottery.php -------------------------------------------------------------------------------- /src/Illuminate/Support/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/Manager.php -------------------------------------------------------------------------------- /src/Illuminate/Support/MessageBag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/MessageBag.php -------------------------------------------------------------------------------- /src/Illuminate/Support/Number.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/Number.php -------------------------------------------------------------------------------- /src/Illuminate/Support/Once.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/Once.php -------------------------------------------------------------------------------- /src/Illuminate/Support/Onceable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/Onceable.php -------------------------------------------------------------------------------- /src/Illuminate/Support/Optional.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/Optional.php -------------------------------------------------------------------------------- /src/Illuminate/Support/Pluralizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/Pluralizer.php -------------------------------------------------------------------------------- /src/Illuminate/Support/ProcessUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/ProcessUtils.php -------------------------------------------------------------------------------- /src/Illuminate/Support/Reflector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/Reflector.php -------------------------------------------------------------------------------- /src/Illuminate/Support/ServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/ServiceProvider.php -------------------------------------------------------------------------------- /src/Illuminate/Support/Sleep.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/Sleep.php -------------------------------------------------------------------------------- /src/Illuminate/Support/Str.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/Str.php -------------------------------------------------------------------------------- /src/Illuminate/Support/Stringable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/Stringable.php -------------------------------------------------------------------------------- /src/Illuminate/Support/Testing/Fakes/BusFake.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/Testing/Fakes/BusFake.php -------------------------------------------------------------------------------- /src/Illuminate/Support/Testing/Fakes/Fake.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/Testing/Fakes/Fake.php -------------------------------------------------------------------------------- /src/Illuminate/Support/Timebox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/Timebox.php -------------------------------------------------------------------------------- /src/Illuminate/Support/Traits/Dumpable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/Traits/Dumpable.php -------------------------------------------------------------------------------- /src/Illuminate/Support/Traits/ForwardsCalls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/Traits/ForwardsCalls.php -------------------------------------------------------------------------------- /src/Illuminate/Support/Traits/Localizable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/Traits/Localizable.php -------------------------------------------------------------------------------- /src/Illuminate/Support/Traits/Tappable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/Traits/Tappable.php -------------------------------------------------------------------------------- /src/Illuminate/Support/ValidatedInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/ValidatedInput.php -------------------------------------------------------------------------------- /src/Illuminate/Support/ViewErrorBag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/ViewErrorBag.php -------------------------------------------------------------------------------- /src/Illuminate/Support/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/composer.json -------------------------------------------------------------------------------- /src/Illuminate/Support/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Support/helpers.php -------------------------------------------------------------------------------- /src/Illuminate/Testing/Assert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Testing/Assert.php -------------------------------------------------------------------------------- /src/Illuminate/Testing/AssertableJsonString.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Testing/AssertableJsonString.php -------------------------------------------------------------------------------- /src/Illuminate/Testing/Fluent/AssertableJson.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Testing/Fluent/AssertableJson.php -------------------------------------------------------------------------------- /src/Illuminate/Testing/Fluent/Concerns/Has.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Testing/Fluent/Concerns/Has.php -------------------------------------------------------------------------------- /src/Illuminate/Testing/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Testing/LICENSE.md -------------------------------------------------------------------------------- /src/Illuminate/Testing/ParallelConsoleOutput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Testing/ParallelConsoleOutput.php -------------------------------------------------------------------------------- /src/Illuminate/Testing/ParallelRunner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Testing/ParallelRunner.php -------------------------------------------------------------------------------- /src/Illuminate/Testing/ParallelTesting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Testing/ParallelTesting.php -------------------------------------------------------------------------------- /src/Illuminate/Testing/PendingCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Testing/PendingCommand.php -------------------------------------------------------------------------------- /src/Illuminate/Testing/TestComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Testing/TestComponent.php -------------------------------------------------------------------------------- /src/Illuminate/Testing/TestResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Testing/TestResponse.php -------------------------------------------------------------------------------- /src/Illuminate/Testing/TestResponseAssert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Testing/TestResponseAssert.php -------------------------------------------------------------------------------- /src/Illuminate/Testing/TestView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Testing/TestView.php -------------------------------------------------------------------------------- /src/Illuminate/Testing/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Testing/composer.json -------------------------------------------------------------------------------- /src/Illuminate/Translation/ArrayLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Translation/ArrayLoader.php -------------------------------------------------------------------------------- /src/Illuminate/Translation/FileLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Translation/FileLoader.php -------------------------------------------------------------------------------- /src/Illuminate/Translation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Translation/LICENSE.md -------------------------------------------------------------------------------- /src/Illuminate/Translation/MessageSelector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Translation/MessageSelector.php -------------------------------------------------------------------------------- /src/Illuminate/Translation/Translator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Translation/Translator.php -------------------------------------------------------------------------------- /src/Illuminate/Translation/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Translation/composer.json -------------------------------------------------------------------------------- /src/Illuminate/Translation/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Translation/lang/en/auth.php -------------------------------------------------------------------------------- /src/Illuminate/Translation/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Translation/lang/en/passwords.php -------------------------------------------------------------------------------- /src/Illuminate/Validation/ConditionalRules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Validation/ConditionalRules.php -------------------------------------------------------------------------------- /src/Illuminate/Validation/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Validation/Factory.php -------------------------------------------------------------------------------- /src/Illuminate/Validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Validation/LICENSE.md -------------------------------------------------------------------------------- /src/Illuminate/Validation/NestedRules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Validation/NestedRules.php -------------------------------------------------------------------------------- /src/Illuminate/Validation/NotPwnedVerifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Validation/NotPwnedVerifier.php -------------------------------------------------------------------------------- /src/Illuminate/Validation/Rule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Validation/Rule.php -------------------------------------------------------------------------------- /src/Illuminate/Validation/Rules/ArrayRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Validation/Rules/ArrayRule.php -------------------------------------------------------------------------------- /src/Illuminate/Validation/Rules/Can.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Validation/Rules/Can.php -------------------------------------------------------------------------------- /src/Illuminate/Validation/Rules/DatabaseRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Validation/Rules/DatabaseRule.php -------------------------------------------------------------------------------- /src/Illuminate/Validation/Rules/Dimensions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Validation/Rules/Dimensions.php -------------------------------------------------------------------------------- /src/Illuminate/Validation/Rules/Enum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Validation/Rules/Enum.php -------------------------------------------------------------------------------- /src/Illuminate/Validation/Rules/ExcludeIf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Validation/Rules/ExcludeIf.php -------------------------------------------------------------------------------- /src/Illuminate/Validation/Rules/Exists.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Validation/Rules/Exists.php -------------------------------------------------------------------------------- /src/Illuminate/Validation/Rules/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Validation/Rules/File.php -------------------------------------------------------------------------------- /src/Illuminate/Validation/Rules/ImageFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Validation/Rules/ImageFile.php -------------------------------------------------------------------------------- /src/Illuminate/Validation/Rules/In.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Validation/Rules/In.php -------------------------------------------------------------------------------- /src/Illuminate/Validation/Rules/NotIn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Validation/Rules/NotIn.php -------------------------------------------------------------------------------- /src/Illuminate/Validation/Rules/Password.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Validation/Rules/Password.php -------------------------------------------------------------------------------- /src/Illuminate/Validation/Rules/ProhibitedIf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Validation/Rules/ProhibitedIf.php -------------------------------------------------------------------------------- /src/Illuminate/Validation/Rules/RequiredIf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Validation/Rules/RequiredIf.php -------------------------------------------------------------------------------- /src/Illuminate/Validation/Rules/Unique.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Validation/Rules/Unique.php -------------------------------------------------------------------------------- /src/Illuminate/Validation/ValidationData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Validation/ValidationData.php -------------------------------------------------------------------------------- /src/Illuminate/Validation/Validator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Validation/Validator.php -------------------------------------------------------------------------------- /src/Illuminate/Validation/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/Validation/composer.json -------------------------------------------------------------------------------- /src/Illuminate/View/AnonymousComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/View/AnonymousComponent.php -------------------------------------------------------------------------------- /src/Illuminate/View/AppendableAttributeValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/View/AppendableAttributeValue.php -------------------------------------------------------------------------------- /src/Illuminate/View/Compilers/BladeCompiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/View/Compilers/BladeCompiler.php -------------------------------------------------------------------------------- /src/Illuminate/View/Compilers/Compiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/View/Compilers/Compiler.php -------------------------------------------------------------------------------- /src/Illuminate/View/Component.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/View/Component.php -------------------------------------------------------------------------------- /src/Illuminate/View/ComponentAttributeBag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/View/ComponentAttributeBag.php -------------------------------------------------------------------------------- /src/Illuminate/View/ComponentSlot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/View/ComponentSlot.php -------------------------------------------------------------------------------- /src/Illuminate/View/Concerns/ManagesEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/View/Concerns/ManagesEvents.php -------------------------------------------------------------------------------- /src/Illuminate/View/Concerns/ManagesLayouts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/View/Concerns/ManagesLayouts.php -------------------------------------------------------------------------------- /src/Illuminate/View/Concerns/ManagesLoops.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/View/Concerns/ManagesLoops.php -------------------------------------------------------------------------------- /src/Illuminate/View/Concerns/ManagesStacks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/View/Concerns/ManagesStacks.php -------------------------------------------------------------------------------- /src/Illuminate/View/DynamicComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/View/DynamicComponent.php -------------------------------------------------------------------------------- /src/Illuminate/View/Engines/CompilerEngine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/View/Engines/CompilerEngine.php -------------------------------------------------------------------------------- /src/Illuminate/View/Engines/Engine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/View/Engines/Engine.php -------------------------------------------------------------------------------- /src/Illuminate/View/Engines/EngineResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/View/Engines/EngineResolver.php -------------------------------------------------------------------------------- /src/Illuminate/View/Engines/FileEngine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/View/Engines/FileEngine.php -------------------------------------------------------------------------------- /src/Illuminate/View/Engines/PhpEngine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/View/Engines/PhpEngine.php -------------------------------------------------------------------------------- /src/Illuminate/View/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/View/Factory.php -------------------------------------------------------------------------------- /src/Illuminate/View/FileViewFinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/View/FileViewFinder.php -------------------------------------------------------------------------------- /src/Illuminate/View/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/View/LICENSE.md -------------------------------------------------------------------------------- /src/Illuminate/View/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/View/View.php -------------------------------------------------------------------------------- /src/Illuminate/View/ViewException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/View/ViewException.php -------------------------------------------------------------------------------- /src/Illuminate/View/ViewFinderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/View/ViewFinderInterface.php -------------------------------------------------------------------------------- /src/Illuminate/View/ViewName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/View/ViewName.php -------------------------------------------------------------------------------- /src/Illuminate/View/ViewServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/View/ViewServiceProvider.php -------------------------------------------------------------------------------- /src/Illuminate/View/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/milwad-dev/framework/HEAD/src/Illuminate/View/composer.json --------------------------------------------------------------------------------