├── .ai-commit.json ├── .chglog ├── CHANGELOG.tpl.md └── config.yml ├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── .lintmdrc ├── .php-cs-fixer-tools.php ├── .php-cs-fixer.php ├── .textlintrc.json ├── .yamlfmt.yml ├── LICENSE ├── README.md ├── _ide_helper_.php ├── app ├── Casts │ ├── Base64Cast.php │ ├── CallbackGetCast.php │ ├── CallbackSetCast.php │ ├── CommaSeparatedToArrayCast.php │ ├── CommaSeparatedToArrayCastUsing.php │ ├── CommaSeparatedToIntegerArrayCast.php │ └── CurrencyCast.php ├── Console │ └── Commands │ │ ├── CachePruneCommand.php │ │ ├── CheckServiceProviderCommand.php │ │ ├── ClearAllCommand.php │ │ ├── ClearLogsCommand.php │ │ ├── Command.php │ │ ├── Concerns │ │ ├── AskForPassword.php │ │ ├── Graceful.php │ │ └── Rescuer.php │ │ ├── FindDumpStatementCommand.php │ │ ├── FindStaticMethodsCommand.php │ │ ├── GenerateSitemapCommand.php │ │ ├── HealthCheckCommand.php │ │ ├── IdeHelperChoresCommand.php │ │ ├── InflectorCommand.php │ │ ├── InitCommand.php │ │ ├── MigrateFromMysqlToSqlite.php │ │ ├── OpcacheUrlCommand.php │ │ ├── OptimizeAllCommand.php │ │ ├── PerformDatabaseBackupCommand.php │ │ ├── ShowUnsupportedRequiresCommand.php │ │ └── UpdateReadmeCommand.php ├── Enums │ ├── CacheKeyEnum.php │ └── ConfigurationKey.php ├── Exceptions │ ├── BadRequestHttpException.php │ ├── InvalidRepeatRequestException.php │ └── VerifyEmailException.php ├── Http │ ├── Controllers │ │ ├── Api │ │ │ ├── AuthController.php │ │ │ ├── ChunkUploadController.php │ │ │ ├── Controller.php │ │ │ ├── CurdController.php │ │ │ ├── PingController.php │ │ │ └── UploadController.php │ │ └── Controller.php │ ├── Middleware │ │ ├── AbortIf.php │ │ ├── AbortIfProduction.php │ │ ├── AddContentLength.php │ │ ├── BasicAuthentication.php │ │ ├── Cors.php │ │ ├── DisableFloc.php │ │ ├── EnsureVerifiedEmailsForSignInUsers.php │ │ ├── HasValidSignature.php │ │ ├── HttpsProtocol.php │ │ ├── IsDeveloper.php │ │ ├── IsRouteIgnored.php │ │ ├── Localization.php │ │ ├── LogHttp.php │ │ ├── MustBeAdmin.php │ │ ├── RedirectUppercase.php │ │ ├── RequiredJson.php │ │ ├── SetAcceptHeader.php │ │ ├── SetDefaultLocaleForUrls.php │ │ ├── SetJsonResponseEncodingOptions.php │ │ ├── SetLocale.php │ │ ├── SetTimezone.php │ │ ├── VerifyFormPaginate.php │ │ ├── VerifyFormPassword.php │ │ ├── VerifyJsonContent.php │ │ ├── VerifySignature.php │ │ └── VerifyUserAbility.php │ ├── Requests │ │ ├── Auth │ │ │ ├── AuthRequest.php │ │ │ └── IndexRequest.php │ │ └── FormRequest.php │ └── Resources │ │ ├── UserCollection.php │ │ └── UserResource.php ├── Jobs │ ├── Middleware │ │ ├── EnsureTokenIsValid.php │ │ └── RateLimitedForJob.php │ └── SendThirdPartyRequestJob.php ├── Listeners │ ├── AuthSubscriber.php │ ├── CollectGarbageListener.php │ ├── ContextSubscriber.php │ ├── LogMailListener.php │ ├── MaintenanceModeDisabledNotificationListener.php │ ├── MaintenanceModeEnabledNotificationListener.php │ ├── PrepareRequestListener.php │ ├── RecordRequestIdentifiersListener.php │ ├── RunCommandInDebugModeListener.php │ └── TraceEventListener.php ├── Mail │ └── UserRegisteredMail.php ├── Models │ ├── BaseModel.php │ ├── Concerns │ │ ├── BelongsToCreator.php │ │ ├── CacheCleaner.php │ │ ├── ForceUseIndexable.php │ │ ├── GetModelByUuid.php │ │ ├── HasPivot.php │ │ ├── HasSchemalessAttributes.php │ │ ├── HasWrappedApiTokens.php │ │ ├── Nullable.php │ │ ├── Observable.php │ │ ├── Pipeable.php │ │ ├── SerializeDate.php │ │ ├── Trashed.php │ │ └── UuidGenerator.php │ ├── DatabaseNotification.php │ ├── Example.php │ ├── HttpLog.php │ ├── JWTUser.php │ ├── Movie.php │ ├── PersonalAccessToken.php │ ├── Pivots │ │ ├── MorphPivotWithCreatorPivot.php │ │ └── PivotWithCreatorPivot.php │ ├── Province.php │ └── User.php ├── Notifications │ ├── SlowQueryLoggedNotification.php │ └── WelcomeNotification.php ├── Observers │ └── UserObserver.php ├── Policies │ ├── Policy.php │ └── UserPolicy.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── AutowiredServiceProvider.php │ ├── CacheServiceProvider.php │ ├── ConsoleServiceProvider.php │ ├── DatabaseServiceProvider.php │ ├── EventServiceProvider.php │ ├── HttpServiceProvider.php │ ├── LogServiceProvider.php │ ├── PackageServiceProvider.php │ ├── PaginatorServiceProvider.php │ ├── QueueServiceProvider.php │ ├── RouteServiceProvider.php │ ├── SupportServiceProvider.php │ ├── UnlessProductionAggregateServiceProvider.php │ ├── ValidatorServiceProvider.php │ ├── ViewServiceProvider.php │ ├── WhenLocalAggregateServiceProvider.php │ └── WhenTestingAggregateServiceProvider.php ├── Rules │ ├── AbstractAggregateRule.php │ ├── AbstractRegexRule.php │ ├── AbstractRule.php │ ├── AddressIpV4Rule.php │ ├── AddressIpV6Rule.php │ ├── BankCardRule.php │ ├── Base64Rule.php │ ├── BetweenWordsRule.php │ ├── BitcoinAddressRule.php │ ├── CallbackRule.php │ ├── CamelCaseRule.php │ ├── CapitalCharWithNumberRule.php │ ├── CarNumberRule.php │ ├── ChineseNameRule.php │ ├── Concerns │ │ ├── DataAware.php │ │ └── ValidatorAware.php │ ├── CurrentUserPasswordRule.php │ ├── DefaultRule.php │ ├── DomainRule.php │ ├── DuplicateRule.php │ ├── EmailRule.php │ ├── EvenNumberRule.php │ ├── HexColorRule.php │ ├── HexRule.php │ ├── HtmlCleanRule.php │ ├── HtmlTagRule.php │ ├── IdCardRule.php │ ├── ImeiRule.php │ ├── InstanceofRule.php │ ├── IntegerBooleanRule.php │ ├── IpRule.php │ ├── JwtRule.php │ ├── KebabCaseRule.php │ ├── LenientPortRule.php │ ├── LocationCoordinatesRule.php │ ├── MacAddressRule.php │ ├── MaxUploadSizeRule.php │ ├── MimeTypeRule.php │ ├── NotDisposableEmailRule.php │ ├── OddNumberRule.php │ ├── PhoneCisRule.php │ ├── PhoneRule.php │ ├── PhoneWorldRule.php │ ├── PortRule.php │ ├── PostalCodeRule.php │ ├── SemverRule.php │ ├── SlugRule.php │ ├── SnakeCaseRule.php │ ├── StrongPassword.php │ ├── TimezoneRule.php │ ├── UlidRule.php │ ├── UrlRule.php │ ├── UuidRule.php │ └── WithoutWhitespaceRule.php ├── Support │ ├── Attributes │ │ ├── Autowired.php │ │ ├── Elasticsearch.php │ │ ├── Ignore.php │ │ └── Mixin.php │ ├── BitEncoder.php │ ├── Bootstrap │ │ └── OutOfMemoryBootstrap.php │ ├── Clients │ │ ├── AbstractClient.php │ │ └── PushDeer.php │ ├── Console │ │ ├── ProgressBarFactory.php │ │ └── SymfonyStyleFactory.php │ ├── Contracts │ │ ├── BitEncoderContract.php │ │ └── SignerContract.php │ ├── Facades │ │ ├── Elasticsearch.php │ │ └── PushDeer.php │ ├── Guzzle │ │ └── CircuitBreakerMiddleware.php │ ├── Managers │ │ └── ElasticsearchManager.php │ ├── Mixins │ │ ├── BlueprintMixin.php │ │ ├── CarbonMixin.php │ │ ├── CollectionMixin.php │ │ ├── CommandMixin.php │ │ ├── GrammarMixin.php │ │ ├── MySqlGrammarMixin.php │ │ ├── PendingRequestMixin.php │ │ ├── QueryBuilder │ │ │ ├── OrderByWithQueryBuilderMixin.php │ │ │ ├── QueryBuilderMixin.php │ │ │ ├── WhereEndsWithQueryBuilderMixin.php │ │ │ ├── WhereFindInSetQueryBuilderMixin.php │ │ │ ├── WhereFullTextQueryBuilderMixin.php │ │ │ ├── WhereInsQueryBuilderMixin.php │ │ │ ├── WhereLikeQueryBuilderMixin.php │ │ │ └── WhereStartsWithQueryBuilderMixin.php │ │ ├── RequestMixin.php │ │ ├── ResponseFactoryMixin.php │ │ ├── RouterMixin.php │ │ ├── SchedulingEventMixin.php │ │ ├── StrMixin.php │ │ ├── StringableMixin.php │ │ ├── UploadedFileMixin.php │ │ └── ViteMixin.php │ ├── Monolog │ │ ├── EcsFormatterTapper.php │ │ ├── Formatter │ │ │ └── EloquentLogHttpModelFormatter.php │ │ ├── Handler │ │ │ └── EloquentHandler.php │ │ └── Processor │ │ │ ├── AppendExtraDataProcessor.php │ │ │ └── EloquentLogHttpModelProcessor.php │ ├── PHPStan │ │ └── ForbiddenGlobalFunctionsRule.php │ ├── PhpCsFixer │ │ ├── Fixer │ │ │ ├── AbstractConfigurableFixer.php │ │ │ ├── AbstractFixer.php │ │ │ ├── BladeFixer.php │ │ │ ├── CommandLineTool │ │ │ │ ├── AbstractCommandLineToolFixer.php │ │ │ │ ├── AutocorrectFixer.php │ │ │ │ ├── BladeFormatterFixer.php │ │ │ │ ├── Concerns │ │ │ │ │ ├── FinalFileAware.php │ │ │ │ │ ├── PostFinalFileCommand.php │ │ │ │ │ └── PreFinalFileCommand.php │ │ │ │ ├── DockerFmtFixer.php │ │ │ │ ├── DotenvLinterFixer.php │ │ │ │ ├── LintMdFixer.php │ │ │ │ ├── MarkdownLintCli2Fixer.php │ │ │ │ ├── MarkdownLintFixer.php │ │ │ │ ├── PintFixer.php │ │ │ │ ├── ShfmtFixer.php │ │ │ │ ├── SqRuffFixer.php │ │ │ │ ├── SqlFluffFixer.php │ │ │ │ ├── TextLintFixer.php │ │ │ │ ├── TombiFixer.php │ │ │ │ ├── XmlLintFixer.php │ │ │ │ ├── YamlFmtFixer.php │ │ │ │ └── ZhLintFixer.php │ │ │ ├── Concerns │ │ │ │ ├── AllowRisky.php │ │ │ │ ├── AlwaysCandidate.php │ │ │ │ ├── HighestPriority.php │ │ │ │ ├── InlineHtmlCandidate.php │ │ │ │ ├── LowestPriority.php │ │ │ │ ├── SupportsExtensions.php │ │ │ │ ├── SupportsExtensionsAndPathArg.php │ │ │ │ └── SupportsPathArg.php │ │ │ ├── InlineHtml │ │ │ │ ├── AbstractInlineHtmlFixer.php │ │ │ │ ├── DoctrineSqlFixer.php │ │ │ │ ├── JsonFixer.php │ │ │ │ └── PhpMyAdminSqlFixer.php │ │ │ └── SqlFixer.php │ │ ├── Fixers.php │ │ └── Utils.php │ ├── PhpUserFilters │ │ └── CallbackFilter.php │ ├── Rectors │ │ ├── ClassHandleMethodRector.php │ │ ├── RenameToPsrNameRector.php │ │ └── rector-rules-overview.md │ ├── Signers │ │ ├── HmacSigner.php │ │ └── Utils.php │ ├── Sse │ │ ├── CloseServerSentEventException.php │ │ └── ServerSentEvent.php │ ├── StreamWrappers │ │ ├── Concerns │ │ │ ├── HasContext.php │ │ │ └── Nameable.php │ │ ├── GlobStreamWrapper.php │ │ ├── StreamWrapper.php │ │ └── UserFileStreamWrapper.php │ ├── Traits │ │ ├── Configurable.php │ │ ├── Copyable.php │ │ ├── Immutable.php │ │ ├── Makeable.php │ │ ├── Sanitizeable.php │ │ ├── SetStateable.php │ │ ├── Singletonable.php │ │ └── WithPipeArgs.php │ ├── Valinor │ │ ├── Converter │ │ │ └── SnakeCaseToCamelCaseConverter.php │ │ └── Transformer │ │ │ └── CamelToSnakeCaseTransformer.php │ ├── VarDumper │ │ └── ServerDumper.php │ └── helpers.php └── View │ ├── Components │ └── AlertComponent.php │ ├── Composers │ └── RequestComposer.php │ └── Creators │ └── RequestCreator.php ├── artisan ├── baselines ├── arrayUnpacking.nonIterable.neon ├── callable.nonCallable.neon ├── loader.neon ├── nullsafe.neverNull.neon ├── offsetAccess.invalidOffset.neon └── property.nonObject.neon ├── bootstrap ├── app.php ├── cache │ └── .gitignore └── providers.php ├── composer-dependency-analyser.php ├── composer-updater ├── composer.json ├── config ├── app.php ├── auth.php ├── cache.php ├── cors.php ├── database.php ├── filesystems.php ├── jwt.php ├── logging.php ├── mail.php ├── queue.php ├── sanctum.php ├── services.php └── session.php ├── database ├── .gitignore ├── factories │ └── UserFactory.php ├── migrations │ ├── 0001_01_01_000000_create_users_table.php │ ├── 0001_01_01_000001_create_cache_table.php │ ├── 0001_01_01_000002_create_jobs_table.php │ ├── 2025_04_15_103431_create_personal_access_tokens_table.php │ └── 2025_04_30_012331_create_schedule_monitor_tables.php └── seeders │ ├── Concerns │ └── CanSeedOncePerDatabase.php │ ├── DatabaseSeeder.php │ └── UsersTableSeeder.php ├── facade.php ├── ide.json ├── mago.toml ├── monorepo-builder.php ├── opencode.json ├── package.json ├── patches.lock.json ├── patches ├── laravel-framework-src-illuminate-foundation-application-php.patch └── laravel-pint-overrides-runner-parallel-processfactory-php.patch ├── peck.json ├── phpstan.neon ├── phpunit.xml ├── pint.json ├── public ├── .htaccess ├── .user.ini ├── favicon.ico ├── index.php ├── robots.txt └── vendor │ ├── log-viewer │ ├── app.css │ ├── app.js │ ├── app.js.LICENSE.txt │ ├── img │ │ ├── log-viewer-128.png │ │ ├── log-viewer-32.png │ │ └── log-viewer-64.png │ └── mix-manifest.json │ └── telescope │ ├── app-dark.css │ ├── app.css │ ├── app.js │ ├── favicon.ico │ └── mix-manifest.json ├── rector.php ├── resources ├── css │ └── app.css ├── js │ ├── app.js │ └── bootstrap.js ├── lang │ ├── en.json │ ├── en │ │ ├── actions.php │ │ ├── http-statuses.php │ │ └── validation.php │ ├── zh_CN.json │ └── zh_CN │ │ ├── actions.php │ │ ├── http-statuses.php │ │ └── validation.php └── views │ ├── components │ └── alert.blade.php │ ├── emails │ └── users │ │ └── registered.blade.php │ ├── errors │ ├── 401.blade.php │ ├── 402.blade.php │ ├── 403.blade.php │ ├── 404.blade.php │ ├── 419.blade.php │ ├── 429.blade.php │ ├── 4xx.blade.php │ ├── 500.blade.php │ ├── 503.blade.php │ ├── 5xx.blade.php │ ├── layout.blade.php │ └── minimal.blade.php │ └── welcome.blade.php ├── routes ├── api.php ├── console.php └── web.php ├── rule-doc-generator ├── storage ├── app │ ├── .gitignore │ ├── private │ │ └── .gitignore │ └── public │ │ └── .gitignore ├── certs │ ├── jwt-rsa-4096-private.pem │ └── jwt-rsa-4096-public.pem ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── stubs ├── cast.inbound.stub ├── cast.stub ├── class.invokable.stub ├── class.stub ├── console.stub ├── 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 ├── enum.backed.stub ├── enum.stub ├── event.stub ├── factory.stub ├── job.queued.stub ├── job.stub ├── listener.queued.stub ├── listener.typed.queued.stub ├── listener.typed.stub ├── mail.stub ├── markdown-mail.stub ├── markdown-notification.stub ├── middleware.stub ├── migration.create.stub ├── migration.pivot.stub ├── migration.stub ├── migration.update.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 ├── rule.stub ├── scope.stub ├── seeder.stub ├── test.stub ├── test.unit.stub ├── trait.stub └── view-component.stub ├── tests ├── Arch │ ├── ArchTest.php │ └── TestCase.php ├── Concerns │ └── Bootloadable.php ├── Feature │ ├── AuthTest.php │ ├── ExampleTest.php │ └── TestCase.php ├── Integration │ ├── ExampleTest.php │ └── TestCase.php ├── Pest.php ├── TestCase.php └── Unit │ ├── ExampleTest.php │ ├── PushDeerTest.php │ ├── RulesTest.php │ └── TestCase.php ├── vendor-bin ├── ace-of-aces │ └── laravel-image-transform-url │ │ └── composer.json ├── gordalina │ └── cachetool │ │ └── composer.json ├── grazulex │ └── laravel-sharelink │ │ └── composer.json ├── laravel11 │ ├── composer.json │ └── composer.lock └── symfony │ └── ai │ └── composer.json └── vite.config.js /.ai-commit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/.ai-commit.json -------------------------------------------------------------------------------- /.chglog/CHANGELOG.tpl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/.chglog/CHANGELOG.tpl.md -------------------------------------------------------------------------------- /.chglog/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/.chglog/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/.gitignore -------------------------------------------------------------------------------- /.lintmdrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/.lintmdrc -------------------------------------------------------------------------------- /.php-cs-fixer-tools.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/.php-cs-fixer-tools.php -------------------------------------------------------------------------------- /.php-cs-fixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/.php-cs-fixer.php -------------------------------------------------------------------------------- /.textlintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/.textlintrc.json -------------------------------------------------------------------------------- /.yamlfmt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/.yamlfmt.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/README.md -------------------------------------------------------------------------------- /_ide_helper_.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/_ide_helper_.php -------------------------------------------------------------------------------- /app/Casts/Base64Cast.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Casts/Base64Cast.php -------------------------------------------------------------------------------- /app/Casts/CallbackGetCast.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Casts/CallbackGetCast.php -------------------------------------------------------------------------------- /app/Casts/CallbackSetCast.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Casts/CallbackSetCast.php -------------------------------------------------------------------------------- /app/Casts/CommaSeparatedToArrayCast.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Casts/CommaSeparatedToArrayCast.php -------------------------------------------------------------------------------- /app/Casts/CommaSeparatedToArrayCastUsing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Casts/CommaSeparatedToArrayCastUsing.php -------------------------------------------------------------------------------- /app/Casts/CommaSeparatedToIntegerArrayCast.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Casts/CommaSeparatedToIntegerArrayCast.php -------------------------------------------------------------------------------- /app/Casts/CurrencyCast.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Casts/CurrencyCast.php -------------------------------------------------------------------------------- /app/Console/Commands/CachePruneCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Console/Commands/CachePruneCommand.php -------------------------------------------------------------------------------- /app/Console/Commands/CheckServiceProviderCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Console/Commands/CheckServiceProviderCommand.php -------------------------------------------------------------------------------- /app/Console/Commands/ClearAllCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Console/Commands/ClearAllCommand.php -------------------------------------------------------------------------------- /app/Console/Commands/ClearLogsCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Console/Commands/ClearLogsCommand.php -------------------------------------------------------------------------------- /app/Console/Commands/Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Console/Commands/Command.php -------------------------------------------------------------------------------- /app/Console/Commands/Concerns/AskForPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Console/Commands/Concerns/AskForPassword.php -------------------------------------------------------------------------------- /app/Console/Commands/Concerns/Graceful.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Console/Commands/Concerns/Graceful.php -------------------------------------------------------------------------------- /app/Console/Commands/Concerns/Rescuer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Console/Commands/Concerns/Rescuer.php -------------------------------------------------------------------------------- /app/Console/Commands/FindDumpStatementCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Console/Commands/FindDumpStatementCommand.php -------------------------------------------------------------------------------- /app/Console/Commands/FindStaticMethodsCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Console/Commands/FindStaticMethodsCommand.php -------------------------------------------------------------------------------- /app/Console/Commands/GenerateSitemapCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Console/Commands/GenerateSitemapCommand.php -------------------------------------------------------------------------------- /app/Console/Commands/HealthCheckCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Console/Commands/HealthCheckCommand.php -------------------------------------------------------------------------------- /app/Console/Commands/IdeHelperChoresCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Console/Commands/IdeHelperChoresCommand.php -------------------------------------------------------------------------------- /app/Console/Commands/InflectorCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Console/Commands/InflectorCommand.php -------------------------------------------------------------------------------- /app/Console/Commands/InitCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Console/Commands/InitCommand.php -------------------------------------------------------------------------------- /app/Console/Commands/MigrateFromMysqlToSqlite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Console/Commands/MigrateFromMysqlToSqlite.php -------------------------------------------------------------------------------- /app/Console/Commands/OpcacheUrlCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Console/Commands/OpcacheUrlCommand.php -------------------------------------------------------------------------------- /app/Console/Commands/OptimizeAllCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Console/Commands/OptimizeAllCommand.php -------------------------------------------------------------------------------- /app/Console/Commands/PerformDatabaseBackupCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Console/Commands/PerformDatabaseBackupCommand.php -------------------------------------------------------------------------------- /app/Console/Commands/ShowUnsupportedRequiresCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Console/Commands/ShowUnsupportedRequiresCommand.php -------------------------------------------------------------------------------- /app/Console/Commands/UpdateReadmeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Console/Commands/UpdateReadmeCommand.php -------------------------------------------------------------------------------- /app/Enums/CacheKeyEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Enums/CacheKeyEnum.php -------------------------------------------------------------------------------- /app/Enums/ConfigurationKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Enums/ConfigurationKey.php -------------------------------------------------------------------------------- /app/Exceptions/BadRequestHttpException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Exceptions/BadRequestHttpException.php -------------------------------------------------------------------------------- /app/Exceptions/InvalidRepeatRequestException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Exceptions/InvalidRepeatRequestException.php -------------------------------------------------------------------------------- /app/Exceptions/VerifyEmailException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Exceptions/VerifyEmailException.php -------------------------------------------------------------------------------- /app/Http/Controllers/Api/AuthController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Http/Controllers/Api/AuthController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Api/ChunkUploadController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Http/Controllers/Api/ChunkUploadController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Api/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Http/Controllers/Api/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/Api/CurdController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Http/Controllers/Api/CurdController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Api/PingController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Http/Controllers/Api/PingController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Api/UploadController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Http/Controllers/Api/UploadController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Middleware/AbortIf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Http/Middleware/AbortIf.php -------------------------------------------------------------------------------- /app/Http/Middleware/AbortIfProduction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Http/Middleware/AbortIfProduction.php -------------------------------------------------------------------------------- /app/Http/Middleware/AddContentLength.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Http/Middleware/AddContentLength.php -------------------------------------------------------------------------------- /app/Http/Middleware/BasicAuthentication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Http/Middleware/BasicAuthentication.php -------------------------------------------------------------------------------- /app/Http/Middleware/Cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Http/Middleware/Cors.php -------------------------------------------------------------------------------- /app/Http/Middleware/DisableFloc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Http/Middleware/DisableFloc.php -------------------------------------------------------------------------------- /app/Http/Middleware/EnsureVerifiedEmailsForSignInUsers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Http/Middleware/EnsureVerifiedEmailsForSignInUsers.php -------------------------------------------------------------------------------- /app/Http/Middleware/HasValidSignature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Http/Middleware/HasValidSignature.php -------------------------------------------------------------------------------- /app/Http/Middleware/HttpsProtocol.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Http/Middleware/HttpsProtocol.php -------------------------------------------------------------------------------- /app/Http/Middleware/IsDeveloper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Http/Middleware/IsDeveloper.php -------------------------------------------------------------------------------- /app/Http/Middleware/IsRouteIgnored.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Http/Middleware/IsRouteIgnored.php -------------------------------------------------------------------------------- /app/Http/Middleware/Localization.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Http/Middleware/Localization.php -------------------------------------------------------------------------------- /app/Http/Middleware/LogHttp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Http/Middleware/LogHttp.php -------------------------------------------------------------------------------- /app/Http/Middleware/MustBeAdmin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Http/Middleware/MustBeAdmin.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectUppercase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Http/Middleware/RedirectUppercase.php -------------------------------------------------------------------------------- /app/Http/Middleware/RequiredJson.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Http/Middleware/RequiredJson.php -------------------------------------------------------------------------------- /app/Http/Middleware/SetAcceptHeader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Http/Middleware/SetAcceptHeader.php -------------------------------------------------------------------------------- /app/Http/Middleware/SetDefaultLocaleForUrls.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Http/Middleware/SetDefaultLocaleForUrls.php -------------------------------------------------------------------------------- /app/Http/Middleware/SetJsonResponseEncodingOptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Http/Middleware/SetJsonResponseEncodingOptions.php -------------------------------------------------------------------------------- /app/Http/Middleware/SetLocale.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Http/Middleware/SetLocale.php -------------------------------------------------------------------------------- /app/Http/Middleware/SetTimezone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Http/Middleware/SetTimezone.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyFormPaginate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Http/Middleware/VerifyFormPaginate.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyFormPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Http/Middleware/VerifyFormPassword.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyJsonContent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Http/Middleware/VerifyJsonContent.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifySignature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Http/Middleware/VerifySignature.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyUserAbility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Http/Middleware/VerifyUserAbility.php -------------------------------------------------------------------------------- /app/Http/Requests/Auth/AuthRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Http/Requests/Auth/AuthRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/Auth/IndexRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Http/Requests/Auth/IndexRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/FormRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Http/Requests/FormRequest.php -------------------------------------------------------------------------------- /app/Http/Resources/UserCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Http/Resources/UserCollection.php -------------------------------------------------------------------------------- /app/Http/Resources/UserResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Http/Resources/UserResource.php -------------------------------------------------------------------------------- /app/Jobs/Middleware/EnsureTokenIsValid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Jobs/Middleware/EnsureTokenIsValid.php -------------------------------------------------------------------------------- /app/Jobs/Middleware/RateLimitedForJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Jobs/Middleware/RateLimitedForJob.php -------------------------------------------------------------------------------- /app/Jobs/SendThirdPartyRequestJob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Jobs/SendThirdPartyRequestJob.php -------------------------------------------------------------------------------- /app/Listeners/AuthSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Listeners/AuthSubscriber.php -------------------------------------------------------------------------------- /app/Listeners/CollectGarbageListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Listeners/CollectGarbageListener.php -------------------------------------------------------------------------------- /app/Listeners/ContextSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Listeners/ContextSubscriber.php -------------------------------------------------------------------------------- /app/Listeners/LogMailListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Listeners/LogMailListener.php -------------------------------------------------------------------------------- /app/Listeners/MaintenanceModeDisabledNotificationListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Listeners/MaintenanceModeDisabledNotificationListener.php -------------------------------------------------------------------------------- /app/Listeners/MaintenanceModeEnabledNotificationListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Listeners/MaintenanceModeEnabledNotificationListener.php -------------------------------------------------------------------------------- /app/Listeners/PrepareRequestListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Listeners/PrepareRequestListener.php -------------------------------------------------------------------------------- /app/Listeners/RecordRequestIdentifiersListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Listeners/RecordRequestIdentifiersListener.php -------------------------------------------------------------------------------- /app/Listeners/RunCommandInDebugModeListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Listeners/RunCommandInDebugModeListener.php -------------------------------------------------------------------------------- /app/Listeners/TraceEventListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Listeners/TraceEventListener.php -------------------------------------------------------------------------------- /app/Mail/UserRegisteredMail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Mail/UserRegisteredMail.php -------------------------------------------------------------------------------- /app/Models/BaseModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Models/BaseModel.php -------------------------------------------------------------------------------- /app/Models/Concerns/BelongsToCreator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Models/Concerns/BelongsToCreator.php -------------------------------------------------------------------------------- /app/Models/Concerns/CacheCleaner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Models/Concerns/CacheCleaner.php -------------------------------------------------------------------------------- /app/Models/Concerns/ForceUseIndexable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Models/Concerns/ForceUseIndexable.php -------------------------------------------------------------------------------- /app/Models/Concerns/GetModelByUuid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Models/Concerns/GetModelByUuid.php -------------------------------------------------------------------------------- /app/Models/Concerns/HasPivot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Models/Concerns/HasPivot.php -------------------------------------------------------------------------------- /app/Models/Concerns/HasSchemalessAttributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Models/Concerns/HasSchemalessAttributes.php -------------------------------------------------------------------------------- /app/Models/Concerns/HasWrappedApiTokens.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Models/Concerns/HasWrappedApiTokens.php -------------------------------------------------------------------------------- /app/Models/Concerns/Nullable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Models/Concerns/Nullable.php -------------------------------------------------------------------------------- /app/Models/Concerns/Observable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Models/Concerns/Observable.php -------------------------------------------------------------------------------- /app/Models/Concerns/Pipeable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Models/Concerns/Pipeable.php -------------------------------------------------------------------------------- /app/Models/Concerns/SerializeDate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Models/Concerns/SerializeDate.php -------------------------------------------------------------------------------- /app/Models/Concerns/Trashed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Models/Concerns/Trashed.php -------------------------------------------------------------------------------- /app/Models/Concerns/UuidGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Models/Concerns/UuidGenerator.php -------------------------------------------------------------------------------- /app/Models/DatabaseNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Models/DatabaseNotification.php -------------------------------------------------------------------------------- /app/Models/Example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Models/Example.php -------------------------------------------------------------------------------- /app/Models/HttpLog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Models/HttpLog.php -------------------------------------------------------------------------------- /app/Models/JWTUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Models/JWTUser.php -------------------------------------------------------------------------------- /app/Models/Movie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Models/Movie.php -------------------------------------------------------------------------------- /app/Models/PersonalAccessToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Models/PersonalAccessToken.php -------------------------------------------------------------------------------- /app/Models/Pivots/MorphPivotWithCreatorPivot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Models/Pivots/MorphPivotWithCreatorPivot.php -------------------------------------------------------------------------------- /app/Models/Pivots/PivotWithCreatorPivot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Models/Pivots/PivotWithCreatorPivot.php -------------------------------------------------------------------------------- /app/Models/Province.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Models/Province.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Notifications/SlowQueryLoggedNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Notifications/SlowQueryLoggedNotification.php -------------------------------------------------------------------------------- /app/Notifications/WelcomeNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Notifications/WelcomeNotification.php -------------------------------------------------------------------------------- /app/Observers/UserObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Observers/UserObserver.php -------------------------------------------------------------------------------- /app/Policies/Policy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Policies/Policy.php -------------------------------------------------------------------------------- /app/Policies/UserPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Policies/UserPolicy.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AutowiredServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Providers/AutowiredServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/CacheServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Providers/CacheServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/ConsoleServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Providers/ConsoleServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/DatabaseServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Providers/DatabaseServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/HttpServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Providers/HttpServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/LogServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Providers/LogServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/PackageServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Providers/PackageServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/PaginatorServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Providers/PaginatorServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/QueueServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Providers/QueueServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/SupportServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Providers/SupportServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/UnlessProductionAggregateServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Providers/UnlessProductionAggregateServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/ValidatorServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Providers/ValidatorServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/ViewServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Providers/ViewServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/WhenLocalAggregateServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Providers/WhenLocalAggregateServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/WhenTestingAggregateServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Providers/WhenTestingAggregateServiceProvider.php -------------------------------------------------------------------------------- /app/Rules/AbstractAggregateRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Rules/AbstractAggregateRule.php -------------------------------------------------------------------------------- /app/Rules/AbstractRegexRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Rules/AbstractRegexRule.php -------------------------------------------------------------------------------- /app/Rules/AbstractRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Rules/AbstractRule.php -------------------------------------------------------------------------------- /app/Rules/AddressIpV4Rule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Rules/AddressIpV4Rule.php -------------------------------------------------------------------------------- /app/Rules/AddressIpV6Rule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Rules/AddressIpV6Rule.php -------------------------------------------------------------------------------- /app/Rules/BankCardRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Rules/BankCardRule.php -------------------------------------------------------------------------------- /app/Rules/Base64Rule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Rules/Base64Rule.php -------------------------------------------------------------------------------- /app/Rules/BetweenWordsRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Rules/BetweenWordsRule.php -------------------------------------------------------------------------------- /app/Rules/BitcoinAddressRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Rules/BitcoinAddressRule.php -------------------------------------------------------------------------------- /app/Rules/CallbackRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Rules/CallbackRule.php -------------------------------------------------------------------------------- /app/Rules/CamelCaseRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Rules/CamelCaseRule.php -------------------------------------------------------------------------------- /app/Rules/CapitalCharWithNumberRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Rules/CapitalCharWithNumberRule.php -------------------------------------------------------------------------------- /app/Rules/CarNumberRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Rules/CarNumberRule.php -------------------------------------------------------------------------------- /app/Rules/ChineseNameRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Rules/ChineseNameRule.php -------------------------------------------------------------------------------- /app/Rules/Concerns/DataAware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Rules/Concerns/DataAware.php -------------------------------------------------------------------------------- /app/Rules/Concerns/ValidatorAware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Rules/Concerns/ValidatorAware.php -------------------------------------------------------------------------------- /app/Rules/CurrentUserPasswordRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Rules/CurrentUserPasswordRule.php -------------------------------------------------------------------------------- /app/Rules/DefaultRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Rules/DefaultRule.php -------------------------------------------------------------------------------- /app/Rules/DomainRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Rules/DomainRule.php -------------------------------------------------------------------------------- /app/Rules/DuplicateRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Rules/DuplicateRule.php -------------------------------------------------------------------------------- /app/Rules/EmailRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Rules/EmailRule.php -------------------------------------------------------------------------------- /app/Rules/EvenNumberRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Rules/EvenNumberRule.php -------------------------------------------------------------------------------- /app/Rules/HexColorRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Rules/HexColorRule.php -------------------------------------------------------------------------------- /app/Rules/HexRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Rules/HexRule.php -------------------------------------------------------------------------------- /app/Rules/HtmlCleanRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Rules/HtmlCleanRule.php -------------------------------------------------------------------------------- /app/Rules/HtmlTagRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Rules/HtmlTagRule.php -------------------------------------------------------------------------------- /app/Rules/IdCardRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Rules/IdCardRule.php -------------------------------------------------------------------------------- /app/Rules/ImeiRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Rules/ImeiRule.php -------------------------------------------------------------------------------- /app/Rules/InstanceofRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Rules/InstanceofRule.php -------------------------------------------------------------------------------- /app/Rules/IntegerBooleanRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Rules/IntegerBooleanRule.php -------------------------------------------------------------------------------- /app/Rules/IpRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Rules/IpRule.php -------------------------------------------------------------------------------- /app/Rules/JwtRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Rules/JwtRule.php -------------------------------------------------------------------------------- /app/Rules/KebabCaseRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Rules/KebabCaseRule.php -------------------------------------------------------------------------------- /app/Rules/LenientPortRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Rules/LenientPortRule.php -------------------------------------------------------------------------------- /app/Rules/LocationCoordinatesRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Rules/LocationCoordinatesRule.php -------------------------------------------------------------------------------- /app/Rules/MacAddressRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Rules/MacAddressRule.php -------------------------------------------------------------------------------- /app/Rules/MaxUploadSizeRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Rules/MaxUploadSizeRule.php -------------------------------------------------------------------------------- /app/Rules/MimeTypeRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Rules/MimeTypeRule.php -------------------------------------------------------------------------------- /app/Rules/NotDisposableEmailRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Rules/NotDisposableEmailRule.php -------------------------------------------------------------------------------- /app/Rules/OddNumberRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Rules/OddNumberRule.php -------------------------------------------------------------------------------- /app/Rules/PhoneCisRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Rules/PhoneCisRule.php -------------------------------------------------------------------------------- /app/Rules/PhoneRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Rules/PhoneRule.php -------------------------------------------------------------------------------- /app/Rules/PhoneWorldRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Rules/PhoneWorldRule.php -------------------------------------------------------------------------------- /app/Rules/PortRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Rules/PortRule.php -------------------------------------------------------------------------------- /app/Rules/PostalCodeRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Rules/PostalCodeRule.php -------------------------------------------------------------------------------- /app/Rules/SemverRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Rules/SemverRule.php -------------------------------------------------------------------------------- /app/Rules/SlugRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Rules/SlugRule.php -------------------------------------------------------------------------------- /app/Rules/SnakeCaseRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Rules/SnakeCaseRule.php -------------------------------------------------------------------------------- /app/Rules/StrongPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Rules/StrongPassword.php -------------------------------------------------------------------------------- /app/Rules/TimezoneRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Rules/TimezoneRule.php -------------------------------------------------------------------------------- /app/Rules/UlidRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Rules/UlidRule.php -------------------------------------------------------------------------------- /app/Rules/UrlRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Rules/UrlRule.php -------------------------------------------------------------------------------- /app/Rules/UuidRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Rules/UuidRule.php -------------------------------------------------------------------------------- /app/Rules/WithoutWhitespaceRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Rules/WithoutWhitespaceRule.php -------------------------------------------------------------------------------- /app/Support/Attributes/Autowired.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/Attributes/Autowired.php -------------------------------------------------------------------------------- /app/Support/Attributes/Elasticsearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/Attributes/Elasticsearch.php -------------------------------------------------------------------------------- /app/Support/Attributes/Ignore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/Attributes/Ignore.php -------------------------------------------------------------------------------- /app/Support/Attributes/Mixin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/Attributes/Mixin.php -------------------------------------------------------------------------------- /app/Support/BitEncoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/BitEncoder.php -------------------------------------------------------------------------------- /app/Support/Bootstrap/OutOfMemoryBootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/Bootstrap/OutOfMemoryBootstrap.php -------------------------------------------------------------------------------- /app/Support/Clients/AbstractClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/Clients/AbstractClient.php -------------------------------------------------------------------------------- /app/Support/Clients/PushDeer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/Clients/PushDeer.php -------------------------------------------------------------------------------- /app/Support/Console/ProgressBarFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/Console/ProgressBarFactory.php -------------------------------------------------------------------------------- /app/Support/Console/SymfonyStyleFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/Console/SymfonyStyleFactory.php -------------------------------------------------------------------------------- /app/Support/Contracts/BitEncoderContract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/Contracts/BitEncoderContract.php -------------------------------------------------------------------------------- /app/Support/Contracts/SignerContract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/Contracts/SignerContract.php -------------------------------------------------------------------------------- /app/Support/Facades/Elasticsearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/Facades/Elasticsearch.php -------------------------------------------------------------------------------- /app/Support/Facades/PushDeer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/Facades/PushDeer.php -------------------------------------------------------------------------------- /app/Support/Guzzle/CircuitBreakerMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/Guzzle/CircuitBreakerMiddleware.php -------------------------------------------------------------------------------- /app/Support/Managers/ElasticsearchManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/Managers/ElasticsearchManager.php -------------------------------------------------------------------------------- /app/Support/Mixins/BlueprintMixin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/Mixins/BlueprintMixin.php -------------------------------------------------------------------------------- /app/Support/Mixins/CarbonMixin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/Mixins/CarbonMixin.php -------------------------------------------------------------------------------- /app/Support/Mixins/CollectionMixin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/Mixins/CollectionMixin.php -------------------------------------------------------------------------------- /app/Support/Mixins/CommandMixin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/Mixins/CommandMixin.php -------------------------------------------------------------------------------- /app/Support/Mixins/GrammarMixin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/Mixins/GrammarMixin.php -------------------------------------------------------------------------------- /app/Support/Mixins/MySqlGrammarMixin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/Mixins/MySqlGrammarMixin.php -------------------------------------------------------------------------------- /app/Support/Mixins/PendingRequestMixin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/Mixins/PendingRequestMixin.php -------------------------------------------------------------------------------- /app/Support/Mixins/QueryBuilder/OrderByWithQueryBuilderMixin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/Mixins/QueryBuilder/OrderByWithQueryBuilderMixin.php -------------------------------------------------------------------------------- /app/Support/Mixins/QueryBuilder/QueryBuilderMixin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/Mixins/QueryBuilder/QueryBuilderMixin.php -------------------------------------------------------------------------------- /app/Support/Mixins/QueryBuilder/WhereEndsWithQueryBuilderMixin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/Mixins/QueryBuilder/WhereEndsWithQueryBuilderMixin.php -------------------------------------------------------------------------------- /app/Support/Mixins/QueryBuilder/WhereFindInSetQueryBuilderMixin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/Mixins/QueryBuilder/WhereFindInSetQueryBuilderMixin.php -------------------------------------------------------------------------------- /app/Support/Mixins/QueryBuilder/WhereFullTextQueryBuilderMixin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/Mixins/QueryBuilder/WhereFullTextQueryBuilderMixin.php -------------------------------------------------------------------------------- /app/Support/Mixins/QueryBuilder/WhereInsQueryBuilderMixin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/Mixins/QueryBuilder/WhereInsQueryBuilderMixin.php -------------------------------------------------------------------------------- /app/Support/Mixins/QueryBuilder/WhereLikeQueryBuilderMixin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/Mixins/QueryBuilder/WhereLikeQueryBuilderMixin.php -------------------------------------------------------------------------------- /app/Support/Mixins/QueryBuilder/WhereStartsWithQueryBuilderMixin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/Mixins/QueryBuilder/WhereStartsWithQueryBuilderMixin.php -------------------------------------------------------------------------------- /app/Support/Mixins/RequestMixin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/Mixins/RequestMixin.php -------------------------------------------------------------------------------- /app/Support/Mixins/ResponseFactoryMixin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/Mixins/ResponseFactoryMixin.php -------------------------------------------------------------------------------- /app/Support/Mixins/RouterMixin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/Mixins/RouterMixin.php -------------------------------------------------------------------------------- /app/Support/Mixins/SchedulingEventMixin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/Mixins/SchedulingEventMixin.php -------------------------------------------------------------------------------- /app/Support/Mixins/StrMixin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/Mixins/StrMixin.php -------------------------------------------------------------------------------- /app/Support/Mixins/StringableMixin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/Mixins/StringableMixin.php -------------------------------------------------------------------------------- /app/Support/Mixins/UploadedFileMixin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/Mixins/UploadedFileMixin.php -------------------------------------------------------------------------------- /app/Support/Mixins/ViteMixin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/Mixins/ViteMixin.php -------------------------------------------------------------------------------- /app/Support/Monolog/EcsFormatterTapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/Monolog/EcsFormatterTapper.php -------------------------------------------------------------------------------- /app/Support/Monolog/Formatter/EloquentLogHttpModelFormatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/Monolog/Formatter/EloquentLogHttpModelFormatter.php -------------------------------------------------------------------------------- /app/Support/Monolog/Handler/EloquentHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/Monolog/Handler/EloquentHandler.php -------------------------------------------------------------------------------- /app/Support/Monolog/Processor/AppendExtraDataProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/Monolog/Processor/AppendExtraDataProcessor.php -------------------------------------------------------------------------------- /app/Support/Monolog/Processor/EloquentLogHttpModelProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/Monolog/Processor/EloquentLogHttpModelProcessor.php -------------------------------------------------------------------------------- /app/Support/PHPStan/ForbiddenGlobalFunctionsRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/PHPStan/ForbiddenGlobalFunctionsRule.php -------------------------------------------------------------------------------- /app/Support/PhpCsFixer/Fixer/AbstractConfigurableFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/PhpCsFixer/Fixer/AbstractConfigurableFixer.php -------------------------------------------------------------------------------- /app/Support/PhpCsFixer/Fixer/AbstractFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/PhpCsFixer/Fixer/AbstractFixer.php -------------------------------------------------------------------------------- /app/Support/PhpCsFixer/Fixer/BladeFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/PhpCsFixer/Fixer/BladeFixer.php -------------------------------------------------------------------------------- /app/Support/PhpCsFixer/Fixer/CommandLineTool/AbstractCommandLineToolFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/PhpCsFixer/Fixer/CommandLineTool/AbstractCommandLineToolFixer.php -------------------------------------------------------------------------------- /app/Support/PhpCsFixer/Fixer/CommandLineTool/AutocorrectFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/PhpCsFixer/Fixer/CommandLineTool/AutocorrectFixer.php -------------------------------------------------------------------------------- /app/Support/PhpCsFixer/Fixer/CommandLineTool/BladeFormatterFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/PhpCsFixer/Fixer/CommandLineTool/BladeFormatterFixer.php -------------------------------------------------------------------------------- /app/Support/PhpCsFixer/Fixer/CommandLineTool/Concerns/FinalFileAware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/PhpCsFixer/Fixer/CommandLineTool/Concerns/FinalFileAware.php -------------------------------------------------------------------------------- /app/Support/PhpCsFixer/Fixer/CommandLineTool/Concerns/PostFinalFileCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/PhpCsFixer/Fixer/CommandLineTool/Concerns/PostFinalFileCommand.php -------------------------------------------------------------------------------- /app/Support/PhpCsFixer/Fixer/CommandLineTool/Concerns/PreFinalFileCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/PhpCsFixer/Fixer/CommandLineTool/Concerns/PreFinalFileCommand.php -------------------------------------------------------------------------------- /app/Support/PhpCsFixer/Fixer/CommandLineTool/DockerFmtFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/PhpCsFixer/Fixer/CommandLineTool/DockerFmtFixer.php -------------------------------------------------------------------------------- /app/Support/PhpCsFixer/Fixer/CommandLineTool/DotenvLinterFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/PhpCsFixer/Fixer/CommandLineTool/DotenvLinterFixer.php -------------------------------------------------------------------------------- /app/Support/PhpCsFixer/Fixer/CommandLineTool/LintMdFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/PhpCsFixer/Fixer/CommandLineTool/LintMdFixer.php -------------------------------------------------------------------------------- /app/Support/PhpCsFixer/Fixer/CommandLineTool/MarkdownLintCli2Fixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/PhpCsFixer/Fixer/CommandLineTool/MarkdownLintCli2Fixer.php -------------------------------------------------------------------------------- /app/Support/PhpCsFixer/Fixer/CommandLineTool/MarkdownLintFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/PhpCsFixer/Fixer/CommandLineTool/MarkdownLintFixer.php -------------------------------------------------------------------------------- /app/Support/PhpCsFixer/Fixer/CommandLineTool/PintFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/PhpCsFixer/Fixer/CommandLineTool/PintFixer.php -------------------------------------------------------------------------------- /app/Support/PhpCsFixer/Fixer/CommandLineTool/ShfmtFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/PhpCsFixer/Fixer/CommandLineTool/ShfmtFixer.php -------------------------------------------------------------------------------- /app/Support/PhpCsFixer/Fixer/CommandLineTool/SqRuffFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/PhpCsFixer/Fixer/CommandLineTool/SqRuffFixer.php -------------------------------------------------------------------------------- /app/Support/PhpCsFixer/Fixer/CommandLineTool/SqlFluffFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/PhpCsFixer/Fixer/CommandLineTool/SqlFluffFixer.php -------------------------------------------------------------------------------- /app/Support/PhpCsFixer/Fixer/CommandLineTool/TextLintFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/PhpCsFixer/Fixer/CommandLineTool/TextLintFixer.php -------------------------------------------------------------------------------- /app/Support/PhpCsFixer/Fixer/CommandLineTool/TombiFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/PhpCsFixer/Fixer/CommandLineTool/TombiFixer.php -------------------------------------------------------------------------------- /app/Support/PhpCsFixer/Fixer/CommandLineTool/XmlLintFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/PhpCsFixer/Fixer/CommandLineTool/XmlLintFixer.php -------------------------------------------------------------------------------- /app/Support/PhpCsFixer/Fixer/CommandLineTool/YamlFmtFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/PhpCsFixer/Fixer/CommandLineTool/YamlFmtFixer.php -------------------------------------------------------------------------------- /app/Support/PhpCsFixer/Fixer/CommandLineTool/ZhLintFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/PhpCsFixer/Fixer/CommandLineTool/ZhLintFixer.php -------------------------------------------------------------------------------- /app/Support/PhpCsFixer/Fixer/Concerns/AllowRisky.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/PhpCsFixer/Fixer/Concerns/AllowRisky.php -------------------------------------------------------------------------------- /app/Support/PhpCsFixer/Fixer/Concerns/AlwaysCandidate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/PhpCsFixer/Fixer/Concerns/AlwaysCandidate.php -------------------------------------------------------------------------------- /app/Support/PhpCsFixer/Fixer/Concerns/HighestPriority.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/PhpCsFixer/Fixer/Concerns/HighestPriority.php -------------------------------------------------------------------------------- /app/Support/PhpCsFixer/Fixer/Concerns/InlineHtmlCandidate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/PhpCsFixer/Fixer/Concerns/InlineHtmlCandidate.php -------------------------------------------------------------------------------- /app/Support/PhpCsFixer/Fixer/Concerns/LowestPriority.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/PhpCsFixer/Fixer/Concerns/LowestPriority.php -------------------------------------------------------------------------------- /app/Support/PhpCsFixer/Fixer/Concerns/SupportsExtensions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/PhpCsFixer/Fixer/Concerns/SupportsExtensions.php -------------------------------------------------------------------------------- /app/Support/PhpCsFixer/Fixer/Concerns/SupportsExtensionsAndPathArg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/PhpCsFixer/Fixer/Concerns/SupportsExtensionsAndPathArg.php -------------------------------------------------------------------------------- /app/Support/PhpCsFixer/Fixer/Concerns/SupportsPathArg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/PhpCsFixer/Fixer/Concerns/SupportsPathArg.php -------------------------------------------------------------------------------- /app/Support/PhpCsFixer/Fixer/InlineHtml/AbstractInlineHtmlFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/PhpCsFixer/Fixer/InlineHtml/AbstractInlineHtmlFixer.php -------------------------------------------------------------------------------- /app/Support/PhpCsFixer/Fixer/InlineHtml/DoctrineSqlFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/PhpCsFixer/Fixer/InlineHtml/DoctrineSqlFixer.php -------------------------------------------------------------------------------- /app/Support/PhpCsFixer/Fixer/InlineHtml/JsonFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/PhpCsFixer/Fixer/InlineHtml/JsonFixer.php -------------------------------------------------------------------------------- /app/Support/PhpCsFixer/Fixer/InlineHtml/PhpMyAdminSqlFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/PhpCsFixer/Fixer/InlineHtml/PhpMyAdminSqlFixer.php -------------------------------------------------------------------------------- /app/Support/PhpCsFixer/Fixer/SqlFixer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/PhpCsFixer/Fixer/SqlFixer.php -------------------------------------------------------------------------------- /app/Support/PhpCsFixer/Fixers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/PhpCsFixer/Fixers.php -------------------------------------------------------------------------------- /app/Support/PhpCsFixer/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/PhpCsFixer/Utils.php -------------------------------------------------------------------------------- /app/Support/PhpUserFilters/CallbackFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/PhpUserFilters/CallbackFilter.php -------------------------------------------------------------------------------- /app/Support/Rectors/ClassHandleMethodRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/Rectors/ClassHandleMethodRector.php -------------------------------------------------------------------------------- /app/Support/Rectors/RenameToPsrNameRector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/Rectors/RenameToPsrNameRector.php -------------------------------------------------------------------------------- /app/Support/Rectors/rector-rules-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/Rectors/rector-rules-overview.md -------------------------------------------------------------------------------- /app/Support/Signers/HmacSigner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/Signers/HmacSigner.php -------------------------------------------------------------------------------- /app/Support/Signers/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/Signers/Utils.php -------------------------------------------------------------------------------- /app/Support/Sse/CloseServerSentEventException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/Sse/CloseServerSentEventException.php -------------------------------------------------------------------------------- /app/Support/Sse/ServerSentEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/Sse/ServerSentEvent.php -------------------------------------------------------------------------------- /app/Support/StreamWrappers/Concerns/HasContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/StreamWrappers/Concerns/HasContext.php -------------------------------------------------------------------------------- /app/Support/StreamWrappers/Concerns/Nameable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/StreamWrappers/Concerns/Nameable.php -------------------------------------------------------------------------------- /app/Support/StreamWrappers/GlobStreamWrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/StreamWrappers/GlobStreamWrapper.php -------------------------------------------------------------------------------- /app/Support/StreamWrappers/StreamWrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/StreamWrappers/StreamWrapper.php -------------------------------------------------------------------------------- /app/Support/StreamWrappers/UserFileStreamWrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/StreamWrappers/UserFileStreamWrapper.php -------------------------------------------------------------------------------- /app/Support/Traits/Configurable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/Traits/Configurable.php -------------------------------------------------------------------------------- /app/Support/Traits/Copyable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/Traits/Copyable.php -------------------------------------------------------------------------------- /app/Support/Traits/Immutable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/Traits/Immutable.php -------------------------------------------------------------------------------- /app/Support/Traits/Makeable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/Traits/Makeable.php -------------------------------------------------------------------------------- /app/Support/Traits/Sanitizeable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/Traits/Sanitizeable.php -------------------------------------------------------------------------------- /app/Support/Traits/SetStateable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/Traits/SetStateable.php -------------------------------------------------------------------------------- /app/Support/Traits/Singletonable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/Traits/Singletonable.php -------------------------------------------------------------------------------- /app/Support/Traits/WithPipeArgs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/Traits/WithPipeArgs.php -------------------------------------------------------------------------------- /app/Support/Valinor/Converter/SnakeCaseToCamelCaseConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/Valinor/Converter/SnakeCaseToCamelCaseConverter.php -------------------------------------------------------------------------------- /app/Support/Valinor/Transformer/CamelToSnakeCaseTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/Valinor/Transformer/CamelToSnakeCaseTransformer.php -------------------------------------------------------------------------------- /app/Support/VarDumper/ServerDumper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/VarDumper/ServerDumper.php -------------------------------------------------------------------------------- /app/Support/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/Support/helpers.php -------------------------------------------------------------------------------- /app/View/Components/AlertComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/View/Components/AlertComponent.php -------------------------------------------------------------------------------- /app/View/Composers/RequestComposer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/View/Composers/RequestComposer.php -------------------------------------------------------------------------------- /app/View/Creators/RequestCreator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/app/View/Creators/RequestCreator.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/artisan -------------------------------------------------------------------------------- /baselines/arrayUnpacking.nonIterable.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/baselines/arrayUnpacking.nonIterable.neon -------------------------------------------------------------------------------- /baselines/callable.nonCallable.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/baselines/callable.nonCallable.neon -------------------------------------------------------------------------------- /baselines/loader.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/baselines/loader.neon -------------------------------------------------------------------------------- /baselines/nullsafe.neverNull.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/baselines/nullsafe.neverNull.neon -------------------------------------------------------------------------------- /baselines/offsetAccess.invalidOffset.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/baselines/offsetAccess.invalidOffset.neon -------------------------------------------------------------------------------- /baselines/property.nonObject.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/baselines/property.nonObject.neon -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /bootstrap/providers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/bootstrap/providers.php -------------------------------------------------------------------------------- /composer-dependency-analyser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/composer-dependency-analyser.php -------------------------------------------------------------------------------- /composer-updater: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/composer-updater -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/composer.json -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/config/cors.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/jwt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/config/jwt.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/sanctum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/config/sanctum.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/config/session.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/migrations/0001_01_01_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/database/migrations/0001_01_01_000000_create_users_table.php -------------------------------------------------------------------------------- /database/migrations/0001_01_01_000001_create_cache_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/database/migrations/0001_01_01_000001_create_cache_table.php -------------------------------------------------------------------------------- /database/migrations/0001_01_01_000002_create_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/database/migrations/0001_01_01_000002_create_jobs_table.php -------------------------------------------------------------------------------- /database/migrations/2025_04_15_103431_create_personal_access_tokens_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/database/migrations/2025_04_15_103431_create_personal_access_tokens_table.php -------------------------------------------------------------------------------- /database/migrations/2025_04_30_012331_create_schedule_monitor_tables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/database/migrations/2025_04_30_012331_create_schedule_monitor_tables.php -------------------------------------------------------------------------------- /database/seeders/Concerns/CanSeedOncePerDatabase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/database/seeders/Concerns/CanSeedOncePerDatabase.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /database/seeders/UsersTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/database/seeders/UsersTableSeeder.php -------------------------------------------------------------------------------- /facade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/facade.php -------------------------------------------------------------------------------- /ide.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/ide.json -------------------------------------------------------------------------------- /mago.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/mago.toml -------------------------------------------------------------------------------- /monorepo-builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/monorepo-builder.php -------------------------------------------------------------------------------- /opencode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/opencode.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/package.json -------------------------------------------------------------------------------- /patches.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/patches.lock.json -------------------------------------------------------------------------------- /patches/laravel-framework-src-illuminate-foundation-application-php.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/patches/laravel-framework-src-illuminate-foundation-application-php.patch -------------------------------------------------------------------------------- /patches/laravel-pint-overrides-runner-parallel-processfactory-php.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/patches/laravel-pint-overrides-runner-parallel-processfactory-php.patch -------------------------------------------------------------------------------- /peck.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/peck.json -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/phpstan.neon -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/phpunit.xml -------------------------------------------------------------------------------- /pint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/pint.json -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/.user.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/public/.user.ini -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/public/index.php -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/vendor/log-viewer/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/public/vendor/log-viewer/app.css -------------------------------------------------------------------------------- /public/vendor/log-viewer/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/public/vendor/log-viewer/app.js -------------------------------------------------------------------------------- /public/vendor/log-viewer/app.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/public/vendor/log-viewer/app.js.LICENSE.txt -------------------------------------------------------------------------------- /public/vendor/log-viewer/img/log-viewer-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/public/vendor/log-viewer/img/log-viewer-128.png -------------------------------------------------------------------------------- /public/vendor/log-viewer/img/log-viewer-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/public/vendor/log-viewer/img/log-viewer-32.png -------------------------------------------------------------------------------- /public/vendor/log-viewer/img/log-viewer-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/public/vendor/log-viewer/img/log-viewer-64.png -------------------------------------------------------------------------------- /public/vendor/log-viewer/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/public/vendor/log-viewer/mix-manifest.json -------------------------------------------------------------------------------- /public/vendor/telescope/app-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/public/vendor/telescope/app-dark.css -------------------------------------------------------------------------------- /public/vendor/telescope/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/public/vendor/telescope/app.css -------------------------------------------------------------------------------- /public/vendor/telescope/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/public/vendor/telescope/app.js -------------------------------------------------------------------------------- /public/vendor/telescope/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/public/vendor/telescope/favicon.ico -------------------------------------------------------------------------------- /public/vendor/telescope/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/public/vendor/telescope/mix-manifest.json -------------------------------------------------------------------------------- /rector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/rector.php -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/resources/css/app.css -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- 1 | import './bootstrap'; 2 | -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/resources/js/bootstrap.js -------------------------------------------------------------------------------- /resources/lang/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/resources/lang/en.json -------------------------------------------------------------------------------- /resources/lang/en/actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/resources/lang/en/actions.php -------------------------------------------------------------------------------- /resources/lang/en/http-statuses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/resources/lang/en/http-statuses.php -------------------------------------------------------------------------------- /resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/resources/lang/en/validation.php -------------------------------------------------------------------------------- /resources/lang/zh_CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/resources/lang/zh_CN.json -------------------------------------------------------------------------------- /resources/lang/zh_CN/actions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/resources/lang/zh_CN/actions.php -------------------------------------------------------------------------------- /resources/lang/zh_CN/http-statuses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/resources/lang/zh_CN/http-statuses.php -------------------------------------------------------------------------------- /resources/lang/zh_CN/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/resources/lang/zh_CN/validation.php -------------------------------------------------------------------------------- /resources/views/components/alert.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/resources/views/components/alert.blade.php -------------------------------------------------------------------------------- /resources/views/emails/users/registered.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/resources/views/emails/users/registered.blade.php -------------------------------------------------------------------------------- /resources/views/errors/401.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/resources/views/errors/401.blade.php -------------------------------------------------------------------------------- /resources/views/errors/402.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/resources/views/errors/402.blade.php -------------------------------------------------------------------------------- /resources/views/errors/403.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/resources/views/errors/403.blade.php -------------------------------------------------------------------------------- /resources/views/errors/404.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/resources/views/errors/404.blade.php -------------------------------------------------------------------------------- /resources/views/errors/419.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/resources/views/errors/419.blade.php -------------------------------------------------------------------------------- /resources/views/errors/429.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/resources/views/errors/429.blade.php -------------------------------------------------------------------------------- /resources/views/errors/4xx.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/resources/views/errors/4xx.blade.php -------------------------------------------------------------------------------- /resources/views/errors/500.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/resources/views/errors/500.blade.php -------------------------------------------------------------------------------- /resources/views/errors/503.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/resources/views/errors/503.blade.php -------------------------------------------------------------------------------- /resources/views/errors/5xx.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/resources/views/errors/5xx.blade.php -------------------------------------------------------------------------------- /resources/views/errors/layout.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/resources/views/errors/layout.blade.php -------------------------------------------------------------------------------- /resources/views/errors/minimal.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/resources/views/errors/minimal.blade.php -------------------------------------------------------------------------------- /resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/routes/web.php -------------------------------------------------------------------------------- /rule-doc-generator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/rule-doc-generator -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/storage/app/.gitignore -------------------------------------------------------------------------------- /storage/app/private/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/certs/jwt-rsa-4096-private.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/storage/certs/jwt-rsa-4096-private.pem -------------------------------------------------------------------------------- /storage/certs/jwt-rsa-4096-public.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/storage/certs/jwt-rsa-4096-public.pem -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/storage/framework/.gitignore -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /stubs/cast.inbound.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/stubs/cast.inbound.stub -------------------------------------------------------------------------------- /stubs/cast.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/stubs/cast.stub -------------------------------------------------------------------------------- /stubs/class.invokable.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/stubs/class.invokable.stub -------------------------------------------------------------------------------- /stubs/class.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/stubs/class.stub -------------------------------------------------------------------------------- /stubs/console.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/stubs/console.stub -------------------------------------------------------------------------------- /stubs/controller.api.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/stubs/controller.api.stub -------------------------------------------------------------------------------- /stubs/controller.invokable.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/stubs/controller.invokable.stub -------------------------------------------------------------------------------- /stubs/controller.model.api.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/stubs/controller.model.api.stub -------------------------------------------------------------------------------- /stubs/controller.model.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/stubs/controller.model.stub -------------------------------------------------------------------------------- /stubs/controller.nested.api.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/stubs/controller.nested.api.stub -------------------------------------------------------------------------------- /stubs/controller.nested.singleton.api.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/stubs/controller.nested.singleton.api.stub -------------------------------------------------------------------------------- /stubs/controller.nested.singleton.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/stubs/controller.nested.singleton.stub -------------------------------------------------------------------------------- /stubs/controller.nested.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/stubs/controller.nested.stub -------------------------------------------------------------------------------- /stubs/controller.plain.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/stubs/controller.plain.stub -------------------------------------------------------------------------------- /stubs/controller.singleton.api.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/stubs/controller.singleton.api.stub -------------------------------------------------------------------------------- /stubs/controller.singleton.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/stubs/controller.singleton.stub -------------------------------------------------------------------------------- /stubs/controller.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/stubs/controller.stub -------------------------------------------------------------------------------- /stubs/enum.backed.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/stubs/enum.backed.stub -------------------------------------------------------------------------------- /stubs/enum.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/stubs/enum.stub -------------------------------------------------------------------------------- /stubs/event.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/stubs/event.stub -------------------------------------------------------------------------------- /stubs/factory.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/stubs/factory.stub -------------------------------------------------------------------------------- /stubs/job.queued.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/stubs/job.queued.stub -------------------------------------------------------------------------------- /stubs/job.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/stubs/job.stub -------------------------------------------------------------------------------- /stubs/listener.queued.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/stubs/listener.queued.stub -------------------------------------------------------------------------------- /stubs/listener.typed.queued.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/stubs/listener.typed.queued.stub -------------------------------------------------------------------------------- /stubs/listener.typed.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/stubs/listener.typed.stub -------------------------------------------------------------------------------- /stubs/mail.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/stubs/mail.stub -------------------------------------------------------------------------------- /stubs/markdown-mail.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/stubs/markdown-mail.stub -------------------------------------------------------------------------------- /stubs/markdown-notification.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/stubs/markdown-notification.stub -------------------------------------------------------------------------------- /stubs/middleware.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/stubs/middleware.stub -------------------------------------------------------------------------------- /stubs/migration.create.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/stubs/migration.create.stub -------------------------------------------------------------------------------- /stubs/migration.pivot.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/stubs/migration.pivot.stub -------------------------------------------------------------------------------- /stubs/migration.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/stubs/migration.stub -------------------------------------------------------------------------------- /stubs/migration.update.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/stubs/migration.update.stub -------------------------------------------------------------------------------- /stubs/model.pivot.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/stubs/model.pivot.stub -------------------------------------------------------------------------------- /stubs/model.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/stubs/model.stub -------------------------------------------------------------------------------- /stubs/notification.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/stubs/notification.stub -------------------------------------------------------------------------------- /stubs/observer.plain.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/stubs/observer.plain.stub -------------------------------------------------------------------------------- /stubs/observer.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/stubs/observer.stub -------------------------------------------------------------------------------- /stubs/pest.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/stubs/pest.stub -------------------------------------------------------------------------------- /stubs/pest.unit.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/stubs/pest.unit.stub -------------------------------------------------------------------------------- /stubs/policy.plain.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/stubs/policy.plain.stub -------------------------------------------------------------------------------- /stubs/policy.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/stubs/policy.stub -------------------------------------------------------------------------------- /stubs/provider.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/stubs/provider.stub -------------------------------------------------------------------------------- /stubs/request.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/stubs/request.stub -------------------------------------------------------------------------------- /stubs/resource-collection.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/stubs/resource-collection.stub -------------------------------------------------------------------------------- /stubs/resource.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/stubs/resource.stub -------------------------------------------------------------------------------- /stubs/rule.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/stubs/rule.stub -------------------------------------------------------------------------------- /stubs/scope.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/stubs/scope.stub -------------------------------------------------------------------------------- /stubs/seeder.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/stubs/seeder.stub -------------------------------------------------------------------------------- /stubs/test.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/stubs/test.stub -------------------------------------------------------------------------------- /stubs/test.unit.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/stubs/test.unit.stub -------------------------------------------------------------------------------- /stubs/trait.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/stubs/trait.stub -------------------------------------------------------------------------------- /stubs/view-component.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/stubs/view-component.stub -------------------------------------------------------------------------------- /tests/Arch/ArchTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/tests/Arch/ArchTest.php -------------------------------------------------------------------------------- /tests/Arch/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/tests/Arch/TestCase.php -------------------------------------------------------------------------------- /tests/Concerns/Bootloadable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/tests/Concerns/Bootloadable.php -------------------------------------------------------------------------------- /tests/Feature/AuthTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/tests/Feature/AuthTest.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/Feature/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/tests/Feature/TestCase.php -------------------------------------------------------------------------------- /tests/Integration/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/tests/Integration/ExampleTest.php -------------------------------------------------------------------------------- /tests/Integration/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/tests/Integration/TestCase.php -------------------------------------------------------------------------------- /tests/Pest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/tests/Pest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /tests/Unit/PushDeerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/tests/Unit/PushDeerTest.php -------------------------------------------------------------------------------- /tests/Unit/RulesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/tests/Unit/RulesTest.php -------------------------------------------------------------------------------- /tests/Unit/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/tests/Unit/TestCase.php -------------------------------------------------------------------------------- /vendor-bin/ace-of-aces/laravel-image-transform-url/composer.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /vendor-bin/gordalina/cachetool/composer.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /vendor-bin/grazulex/laravel-sharelink/composer.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /vendor-bin/laravel11/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/vendor-bin/laravel11/composer.json -------------------------------------------------------------------------------- /vendor-bin/laravel11/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/vendor-bin/laravel11/composer.lock -------------------------------------------------------------------------------- /vendor-bin/symfony/ai/composer.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanguans/laravel-skeleton/HEAD/vite.config.js --------------------------------------------------------------------------------