├── .editorconfig ├── .env.example ├── .gitattributes ├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ ├── pull-requests.yml │ └── tests.yml ├── .gitignore ├── LICENSE ├── app ├── Admin │ ├── AdminServiceProvider.php │ ├── Endpoints │ │ ├── DeleteUser.php │ │ ├── GetUser.php │ │ ├── ListUsers.php │ │ └── UpdateUser.php │ └── Middlewares │ │ └── MustBeAdmin.php ├── Api │ ├── ApiServiceProvider.php │ ├── Auth │ │ ├── Endpoints │ │ │ ├── Login.php │ │ │ ├── Logout.php │ │ │ └── Register.php │ │ ├── Tests │ │ │ ├── LoginTest.php │ │ │ └── RegisterTest.php │ │ └── routes.php │ └── User │ │ ├── Endpoints │ │ ├── GetMe.php │ │ └── GetUser.php │ │ ├── Resources │ │ └── User.php │ │ ├── Tests │ │ ├── GetMeTest.php │ │ ├── GetUserTest.php │ │ └── UserAgentTest.php │ │ └── routes.php ├── App\Test │ └── App\TestServiceProvider └── Console │ └── Kernel.php ├── artisan ├── bootstrap ├── app.php ├── cache │ └── .gitignore └── helpers.php ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── cors.php ├── database.php ├── filesystems.php ├── hashing.php ├── logging.php ├── mail.php ├── passport.php ├── queue.php ├── sanctum.php ├── services.php ├── session.php └── view.php ├── database ├── .gitignore ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ ├── 2019_09_30_081447_create_tags_table.php │ ├── 2019_12_14_000001_create_personal_access_tokens_table.php │ └── 2020_05_15_110212_create_user_agents_table.php └── seeders │ ├── DatabaseSeeder.php │ └── UsersTableSeeder.php ├── domain ├── Tag │ └── Tag.php └── User │ ├── Filters │ └── UserFilter.php │ ├── Jobs │ ├── RefreshUserFirstActivedAt.php │ └── RefreshUserLastActiveAt.php │ ├── Notifications │ ├── ResetPassword.php │ └── VerifyEmail.php │ ├── Policies │ └── UserPolicy.php │ ├── Rules │ └── Phone.php │ ├── User.php │ ├── UserAgent.php │ └── UserFactory.php ├── infrastructure ├── Actions │ ├── Action.php │ └── FakeAction.php ├── Exceptions │ └── Handler.php ├── Generator │ ├── AppHelper.php │ ├── Commands │ │ ├── App │ │ │ ├── CreateAppCommand.php │ │ │ ├── CreateControllerCommand.php │ │ │ ├── CreateEndpointCommand.php │ │ │ ├── CreateMiddlewareCommand.php │ │ │ ├── CreateRequestCommand.php │ │ │ └── CreateResourceCommand.php │ │ ├── Domain │ │ │ ├── CreateActionCommand.php │ │ │ ├── CreateCastCommand.php │ │ │ ├── CreateChannelCommand.php │ │ │ ├── CreateDomainCommand.php │ │ │ ├── CreateEventCommand.php │ │ │ ├── CreateExceptionCommand.php │ │ │ ├── CreateFactoryCommand.php │ │ │ ├── CreateFilterCommand.php │ │ │ ├── CreateJobCommand.php │ │ │ ├── CreateListenerCommand.php │ │ │ ├── CreateMailCommand.php │ │ │ ├── CreateModelCommand.php │ │ │ ├── CreateNotificationCommand.php │ │ │ ├── CreateObserverCommand.php │ │ │ ├── CreatePolicyCommand.php │ │ │ ├── CreateRuleCommand.php │ │ │ └── CreateScopeCommand.php │ │ ├── WithAppOption.php │ │ └── WithDomainOption.php │ ├── DomainHelper.php │ ├── GeneratorServiceProvider.php │ └── stubs │ │ ├── action.stub │ │ ├── endpoint.stub │ │ └── service-provider.stub ├── Http │ ├── Kernel.php │ └── Middleware │ │ ├── AcceptJsonResponse.php │ │ ├── Authenticate.php │ │ ├── EncryptCookies.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── RefreshUserActiveAt.php │ │ ├── SetLocale.php │ │ ├── StoreUserAgent.php │ │ ├── TrimStrings.php │ │ ├── TrustProxies.php │ │ ├── UseApiGuard.php │ │ └── VerifyCsrfToken.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php └── Traits │ ├── UseTableNameAsMorphClass.php │ └── UsingUuidAsPrimaryKey.php ├── lang ├── en.json ├── en │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ ├── validation.php │ └── verification.php ├── es │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php └── zh-CN │ ├── auth.php │ ├── pagination.php │ ├── passwords.php │ └── validation.php ├── phpunit.xml ├── public ├── .htaccess ├── favicon.ico ├── img │ └── default-avatar.png ├── index.php ├── robots.txt └── web.config ├── readme.md ├── routes ├── api.php ├── channels.php ├── console.php └── web.php ├── server.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tests ├── CreatesApplication.php ├── Feature │ └── .gitkeep ├── TestCase.php └── Unit │ └── .gitkeep └── worker.conf /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [overtrue] 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/pull-requests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/.github/workflows/pull-requests.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/LICENSE -------------------------------------------------------------------------------- /app/Admin/AdminServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/app/Admin/AdminServiceProvider.php -------------------------------------------------------------------------------- /app/Admin/Endpoints/DeleteUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/app/Admin/Endpoints/DeleteUser.php -------------------------------------------------------------------------------- /app/Admin/Endpoints/GetUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/app/Admin/Endpoints/GetUser.php -------------------------------------------------------------------------------- /app/Admin/Endpoints/ListUsers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/app/Admin/Endpoints/ListUsers.php -------------------------------------------------------------------------------- /app/Admin/Endpoints/UpdateUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/app/Admin/Endpoints/UpdateUser.php -------------------------------------------------------------------------------- /app/Admin/Middlewares/MustBeAdmin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/app/Admin/Middlewares/MustBeAdmin.php -------------------------------------------------------------------------------- /app/Api/ApiServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/app/Api/ApiServiceProvider.php -------------------------------------------------------------------------------- /app/Api/Auth/Endpoints/Login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/app/Api/Auth/Endpoints/Login.php -------------------------------------------------------------------------------- /app/Api/Auth/Endpoints/Logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/app/Api/Auth/Endpoints/Logout.php -------------------------------------------------------------------------------- /app/Api/Auth/Endpoints/Register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/app/Api/Auth/Endpoints/Register.php -------------------------------------------------------------------------------- /app/Api/Auth/Tests/LoginTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/app/Api/Auth/Tests/LoginTest.php -------------------------------------------------------------------------------- /app/Api/Auth/Tests/RegisterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/app/Api/Auth/Tests/RegisterTest.php -------------------------------------------------------------------------------- /app/Api/Auth/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/app/Api/Auth/routes.php -------------------------------------------------------------------------------- /app/Api/User/Endpoints/GetMe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/app/Api/User/Endpoints/GetMe.php -------------------------------------------------------------------------------- /app/Api/User/Endpoints/GetUser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/app/Api/User/Endpoints/GetUser.php -------------------------------------------------------------------------------- /app/Api/User/Resources/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/app/Api/User/Resources/User.php -------------------------------------------------------------------------------- /app/Api/User/Tests/GetMeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/app/Api/User/Tests/GetMeTest.php -------------------------------------------------------------------------------- /app/Api/User/Tests/GetUserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/app/Api/User/Tests/GetUserTest.php -------------------------------------------------------------------------------- /app/Api/User/Tests/UserAgentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/app/Api/User/Tests/UserAgentTest.php -------------------------------------------------------------------------------- /app/Api/User/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/app/Api/User/routes.php -------------------------------------------------------------------------------- /app/App\Test/App\TestServiceProvider: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/app/App\Test/App\TestServiceProvider -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /bootstrap/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/bootstrap/helpers.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/config/cors.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/config/database.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/passport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/config/passport.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/sanctum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/config/sanctum.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/config/session.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/database/.gitignore -------------------------------------------------------------------------------- /database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/database/migrations/2014_10_12_000000_create_users_table.php -------------------------------------------------------------------------------- /database/migrations/2014_10_12_100000_create_password_resets_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/database/migrations/2014_10_12_100000_create_password_resets_table.php -------------------------------------------------------------------------------- /database/migrations/2019_08_19_000000_create_failed_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/database/migrations/2019_08_19_000000_create_failed_jobs_table.php -------------------------------------------------------------------------------- /database/migrations/2019_09_30_081447_create_tags_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/database/migrations/2019_09_30_081447_create_tags_table.php -------------------------------------------------------------------------------- /database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php -------------------------------------------------------------------------------- /database/migrations/2020_05_15_110212_create_user_agents_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/database/migrations/2020_05_15_110212_create_user_agents_table.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /database/seeders/UsersTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/database/seeders/UsersTableSeeder.php -------------------------------------------------------------------------------- /domain/Tag/Tag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/domain/Tag/Tag.php -------------------------------------------------------------------------------- /domain/User/Filters/UserFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/domain/User/Filters/UserFilter.php -------------------------------------------------------------------------------- /domain/User/Jobs/RefreshUserFirstActivedAt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/domain/User/Jobs/RefreshUserFirstActivedAt.php -------------------------------------------------------------------------------- /domain/User/Jobs/RefreshUserLastActiveAt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/domain/User/Jobs/RefreshUserLastActiveAt.php -------------------------------------------------------------------------------- /domain/User/Notifications/ResetPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/domain/User/Notifications/ResetPassword.php -------------------------------------------------------------------------------- /domain/User/Notifications/VerifyEmail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/domain/User/Notifications/VerifyEmail.php -------------------------------------------------------------------------------- /domain/User/Policies/UserPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/domain/User/Policies/UserPolicy.php -------------------------------------------------------------------------------- /domain/User/Rules/Phone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/domain/User/Rules/Phone.php -------------------------------------------------------------------------------- /domain/User/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/domain/User/User.php -------------------------------------------------------------------------------- /domain/User/UserAgent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/domain/User/UserAgent.php -------------------------------------------------------------------------------- /domain/User/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/domain/User/UserFactory.php -------------------------------------------------------------------------------- /infrastructure/Actions/Action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/infrastructure/Actions/Action.php -------------------------------------------------------------------------------- /infrastructure/Actions/FakeAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/infrastructure/Actions/FakeAction.php -------------------------------------------------------------------------------- /infrastructure/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/infrastructure/Exceptions/Handler.php -------------------------------------------------------------------------------- /infrastructure/Generator/AppHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/infrastructure/Generator/AppHelper.php -------------------------------------------------------------------------------- /infrastructure/Generator/Commands/App/CreateAppCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/infrastructure/Generator/Commands/App/CreateAppCommand.php -------------------------------------------------------------------------------- /infrastructure/Generator/Commands/App/CreateControllerCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/infrastructure/Generator/Commands/App/CreateControllerCommand.php -------------------------------------------------------------------------------- /infrastructure/Generator/Commands/App/CreateEndpointCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/infrastructure/Generator/Commands/App/CreateEndpointCommand.php -------------------------------------------------------------------------------- /infrastructure/Generator/Commands/App/CreateMiddlewareCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/infrastructure/Generator/Commands/App/CreateMiddlewareCommand.php -------------------------------------------------------------------------------- /infrastructure/Generator/Commands/App/CreateRequestCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/infrastructure/Generator/Commands/App/CreateRequestCommand.php -------------------------------------------------------------------------------- /infrastructure/Generator/Commands/App/CreateResourceCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/infrastructure/Generator/Commands/App/CreateResourceCommand.php -------------------------------------------------------------------------------- /infrastructure/Generator/Commands/Domain/CreateActionCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/infrastructure/Generator/Commands/Domain/CreateActionCommand.php -------------------------------------------------------------------------------- /infrastructure/Generator/Commands/Domain/CreateCastCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/infrastructure/Generator/Commands/Domain/CreateCastCommand.php -------------------------------------------------------------------------------- /infrastructure/Generator/Commands/Domain/CreateChannelCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/infrastructure/Generator/Commands/Domain/CreateChannelCommand.php -------------------------------------------------------------------------------- /infrastructure/Generator/Commands/Domain/CreateDomainCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/infrastructure/Generator/Commands/Domain/CreateDomainCommand.php -------------------------------------------------------------------------------- /infrastructure/Generator/Commands/Domain/CreateEventCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/infrastructure/Generator/Commands/Domain/CreateEventCommand.php -------------------------------------------------------------------------------- /infrastructure/Generator/Commands/Domain/CreateExceptionCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/infrastructure/Generator/Commands/Domain/CreateExceptionCommand.php -------------------------------------------------------------------------------- /infrastructure/Generator/Commands/Domain/CreateFactoryCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/infrastructure/Generator/Commands/Domain/CreateFactoryCommand.php -------------------------------------------------------------------------------- /infrastructure/Generator/Commands/Domain/CreateFilterCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/infrastructure/Generator/Commands/Domain/CreateFilterCommand.php -------------------------------------------------------------------------------- /infrastructure/Generator/Commands/Domain/CreateJobCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/infrastructure/Generator/Commands/Domain/CreateJobCommand.php -------------------------------------------------------------------------------- /infrastructure/Generator/Commands/Domain/CreateListenerCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/infrastructure/Generator/Commands/Domain/CreateListenerCommand.php -------------------------------------------------------------------------------- /infrastructure/Generator/Commands/Domain/CreateMailCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/infrastructure/Generator/Commands/Domain/CreateMailCommand.php -------------------------------------------------------------------------------- /infrastructure/Generator/Commands/Domain/CreateModelCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/infrastructure/Generator/Commands/Domain/CreateModelCommand.php -------------------------------------------------------------------------------- /infrastructure/Generator/Commands/Domain/CreateNotificationCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/infrastructure/Generator/Commands/Domain/CreateNotificationCommand.php -------------------------------------------------------------------------------- /infrastructure/Generator/Commands/Domain/CreateObserverCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/infrastructure/Generator/Commands/Domain/CreateObserverCommand.php -------------------------------------------------------------------------------- /infrastructure/Generator/Commands/Domain/CreatePolicyCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/infrastructure/Generator/Commands/Domain/CreatePolicyCommand.php -------------------------------------------------------------------------------- /infrastructure/Generator/Commands/Domain/CreateRuleCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/infrastructure/Generator/Commands/Domain/CreateRuleCommand.php -------------------------------------------------------------------------------- /infrastructure/Generator/Commands/Domain/CreateScopeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/infrastructure/Generator/Commands/Domain/CreateScopeCommand.php -------------------------------------------------------------------------------- /infrastructure/Generator/Commands/WithAppOption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/infrastructure/Generator/Commands/WithAppOption.php -------------------------------------------------------------------------------- /infrastructure/Generator/Commands/WithDomainOption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/infrastructure/Generator/Commands/WithDomainOption.php -------------------------------------------------------------------------------- /infrastructure/Generator/DomainHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/infrastructure/Generator/DomainHelper.php -------------------------------------------------------------------------------- /infrastructure/Generator/GeneratorServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/infrastructure/Generator/GeneratorServiceProvider.php -------------------------------------------------------------------------------- /infrastructure/Generator/stubs/action.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/infrastructure/Generator/stubs/action.stub -------------------------------------------------------------------------------- /infrastructure/Generator/stubs/endpoint.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/infrastructure/Generator/stubs/endpoint.stub -------------------------------------------------------------------------------- /infrastructure/Generator/stubs/service-provider.stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/infrastructure/Generator/stubs/service-provider.stub -------------------------------------------------------------------------------- /infrastructure/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/infrastructure/Http/Kernel.php -------------------------------------------------------------------------------- /infrastructure/Http/Middleware/AcceptJsonResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/infrastructure/Http/Middleware/AcceptJsonResponse.php -------------------------------------------------------------------------------- /infrastructure/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/infrastructure/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /infrastructure/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/infrastructure/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /infrastructure/Http/Middleware/PreventRequestsDuringMaintenance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/infrastructure/Http/Middleware/PreventRequestsDuringMaintenance.php -------------------------------------------------------------------------------- /infrastructure/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/infrastructure/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /infrastructure/Http/Middleware/RefreshUserActiveAt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/infrastructure/Http/Middleware/RefreshUserActiveAt.php -------------------------------------------------------------------------------- /infrastructure/Http/Middleware/SetLocale.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/infrastructure/Http/Middleware/SetLocale.php -------------------------------------------------------------------------------- /infrastructure/Http/Middleware/StoreUserAgent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/infrastructure/Http/Middleware/StoreUserAgent.php -------------------------------------------------------------------------------- /infrastructure/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/infrastructure/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /infrastructure/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/infrastructure/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /infrastructure/Http/Middleware/UseApiGuard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/infrastructure/Http/Middleware/UseApiGuard.php -------------------------------------------------------------------------------- /infrastructure/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/infrastructure/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /infrastructure/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/infrastructure/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /infrastructure/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/infrastructure/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /infrastructure/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/infrastructure/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /infrastructure/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/infrastructure/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /infrastructure/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/infrastructure/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /infrastructure/Traits/UseTableNameAsMorphClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/infrastructure/Traits/UseTableNameAsMorphClass.php -------------------------------------------------------------------------------- /infrastructure/Traits/UsingUuidAsPrimaryKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/infrastructure/Traits/UsingUuidAsPrimaryKey.php -------------------------------------------------------------------------------- /lang/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/lang/en.json -------------------------------------------------------------------------------- /lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/lang/en/auth.php -------------------------------------------------------------------------------- /lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/lang/en/pagination.php -------------------------------------------------------------------------------- /lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/lang/en/passwords.php -------------------------------------------------------------------------------- /lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/lang/en/validation.php -------------------------------------------------------------------------------- /lang/en/verification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/lang/en/verification.php -------------------------------------------------------------------------------- /lang/es/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/lang/es/auth.php -------------------------------------------------------------------------------- /lang/es/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/lang/es/pagination.php -------------------------------------------------------------------------------- /lang/es/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/lang/es/passwords.php -------------------------------------------------------------------------------- /lang/es/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/lang/es/validation.php -------------------------------------------------------------------------------- /lang/zh-CN/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/lang/zh-CN/auth.php -------------------------------------------------------------------------------- /lang/zh-CN/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/lang/zh-CN/pagination.php -------------------------------------------------------------------------------- /lang/zh-CN/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/lang/zh-CN/passwords.php -------------------------------------------------------------------------------- /lang/zh-CN/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/lang/zh-CN/validation.php -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/img/default-avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/public/img/default-avatar.png -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/public/index.php -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/public/web.config -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/readme.md -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/laravel-skeleton/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- 1 |