├── .cs.php ├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ ├── build.yml │ └── deploy.yml ├── .gitignore ├── .htaccess ├── .scrutinizer.yml ├── LICENSE ├── README.md ├── bin └── console.php ├── composer.json ├── config ├── bootstrap.php ├── container.php ├── defaults.php ├── env │ ├── env.dev.php │ ├── env.example.php │ ├── env.github.php │ ├── env.phinx.php │ ├── env.prod.php │ ├── env.scrutinizer.php │ └── env.test.php ├── functions.php ├── middleware.php ├── routes.php └── settings.php ├── logs └── empty ├── phpstan.neon ├── phpunit.xml ├── public ├── .htaccess ├── assets │ ├── authentication │ │ ├── login-main.js │ │ ├── login.css │ │ ├── password-reset-main.js │ │ ├── password-strength-checker.js │ │ └── throttle-timer.js │ ├── client │ │ ├── create │ │ │ ├── client-create-main.js │ │ │ └── client-create-modal.html.js │ │ ├── img │ │ │ ├── avatar_female.svg │ │ │ ├── avatar_male.svg │ │ │ ├── avatar_neutral.svg │ │ │ ├── eye-icon-active.svg │ │ │ └── eye-icon.svg │ │ ├── list │ │ │ ├── client-list-loading.js │ │ │ ├── client-list-main.js │ │ │ ├── client-list-profile-card.html.js │ │ │ ├── client-list-skeleton-loader.css │ │ │ ├── client-list-skeleton-loader.js │ │ │ └── client-list.css │ │ ├── note │ │ │ ├── client-note.css │ │ │ ├── client-read-create-note.js │ │ │ ├── client-read-delete-note.js │ │ │ ├── client-read-note-event-listener-setup.js │ │ │ ├── client-read-note-loading.js │ │ │ ├── client-read-note-skeleton-loader.js │ │ │ ├── client-read-save-existing-note.js │ │ │ └── client-read-template-note.html.js │ │ ├── read │ │ │ ├── client-read-main.js │ │ │ ├── client-read-note-skeleton-loader.css │ │ │ ├── client-read-personal-info.js │ │ │ └── client-read.css │ │ ├── update │ │ │ ├── client-update-contenteditable.js │ │ │ └── client-update-dropdown.js │ │ └── util │ │ │ └── client-template-util.js │ ├── dashboard │ │ ├── dashboard-main.js │ │ └── dashboard.css │ ├── error │ │ ├── Poppins-Black.ttf │ │ ├── Poppins-Bold.ttf │ │ ├── Poppins-Light.ttf │ │ ├── Poppins-Regular.ttf │ │ ├── prod-error-page.css │ │ └── prod-error-page.js │ ├── general │ │ ├── ajax │ │ │ ├── ajax-util │ │ │ │ └── fail-handler.js │ │ │ ├── fetch-data.js │ │ │ ├── fetch-translation-data.js │ │ │ ├── modal-submit-request.js │ │ │ ├── submit-delete-request.js │ │ │ └── submit-update-data.js │ │ ├── dark-mode │ │ │ ├── dark-mode-toggle-switch.css │ │ │ ├── dark-mode.js │ │ │ ├── moon-icon.svg │ │ │ └── sun-icon.svg │ │ ├── event-handler │ │ │ ├── open-link-on-html-element.js │ │ │ └── trigger-click-on-enter-keypress.js │ │ ├── general-css │ │ │ ├── colors.css │ │ │ ├── general.css │ │ │ └── layout.css │ │ ├── general-font │ │ │ ├── CenturyGothic.ttf │ │ │ ├── Comfortaa.ttf │ │ │ ├── DMSans-Regular.ttf │ │ │ ├── Montserrat.ttf │ │ │ ├── SF-Pro │ │ │ │ ├── SF-Pro-Display-Bold.otf │ │ │ │ ├── SF-Pro-Display-Heavy.otf │ │ │ │ ├── SF-Pro-Display-Medium.otf │ │ │ │ ├── SF-Pro-Display-Regular.otf │ │ │ │ ├── SF-Pro-Display-Semibold.otf │ │ │ │ ├── SF-Pro-Text-Bold.otf │ │ │ │ ├── SF-Pro-Text-Medium.otf │ │ │ │ ├── SF-Pro-Text-MediumItalic.otf │ │ │ │ ├── SF-Pro-Text-Regular.otf │ │ │ │ ├── SF-Pro-Text-RegularItalic.otf │ │ │ │ ├── SF-Pro-Text-Thin.otf │ │ │ │ ├── SF-Pro-Text-ThinItalic.otf │ │ │ │ └── SF-Pro.ttf │ │ │ └── fonts.css │ │ ├── general-img │ │ │ ├── action │ │ │ │ ├── arrow-icon.svg │ │ │ │ ├── del-btn-icon.svg │ │ │ │ ├── material-edit-icon.svg │ │ │ │ ├── plus-icon.svg │ │ │ │ ├── trash-icon.svg │ │ │ │ └── undelete-icon.svg │ │ │ ├── checkmark.svg │ │ │ ├── github-icon.svg │ │ │ ├── heart-icon.svg │ │ │ └── personal-data-icons │ │ │ │ ├── birthdate-icon.svg │ │ │ │ ├── email-icon-filled.svg │ │ │ │ ├── email-icon.svg │ │ │ │ ├── gender-icon.svg │ │ │ │ ├── location-icon.svg │ │ │ │ ├── phone-icon.svg │ │ │ │ └── warning-icon.svg │ │ ├── general-js │ │ │ ├── config.js │ │ │ ├── functions.js │ │ │ └── initialization.js │ │ ├── page-behaviour │ │ │ └── scroll-to-anchor.js │ │ ├── page-component │ │ │ ├── button │ │ │ │ └── plus-button.css │ │ │ ├── collapsible │ │ │ │ └── collapsible.js │ │ │ ├── contenteditable │ │ │ │ ├── contenteditable-main.js │ │ │ │ └── contenteditable.css │ │ │ ├── filter-chip │ │ │ │ ├── filter-chip.css │ │ │ │ └── filter-chip.js │ │ │ ├── flash-message │ │ │ │ ├── flash-message.css │ │ │ │ ├── flash-message.js │ │ │ │ └── img │ │ │ │ │ ├── flash-checkmark.svg │ │ │ │ │ ├── flash-error.svg │ │ │ │ │ ├── flash-info.svg │ │ │ │ │ └── flash-warning.svg │ │ │ ├── form │ │ │ │ └── form.css │ │ │ ├── loader │ │ │ │ └── animated-checkmark.css │ │ │ ├── modal │ │ │ │ ├── alert-modal.css │ │ │ │ ├── alert-modal.js │ │ │ │ ├── dropdown-request.js │ │ │ │ ├── form-modal.css │ │ │ │ ├── modal-form.js │ │ │ │ └── modal.js │ │ │ ├── panel │ │ │ │ └── panel.css │ │ │ ├── skeleton-loader │ │ │ │ └── skeleton-loader.css │ │ │ ├── table │ │ │ │ └── responsive-table.css │ │ │ └── textarea │ │ │ │ └── auto-resizing-textarea.js │ │ ├── template │ │ │ └── template-util.js │ │ └── validation │ │ │ └── form-validation.js │ ├── navbar │ │ ├── img │ │ │ ├── gallery-tiles-filled.svg │ │ │ ├── gallery-tiles-half-filled.svg │ │ │ ├── gallery-tiles.svg │ │ │ ├── logout-filled.svg │ │ │ ├── logout.svg │ │ │ ├── people-filled.svg │ │ │ ├── people.svg │ │ │ ├── user-icon-filled.svg │ │ │ ├── user-icon.svg │ │ │ ├── users-filled.svg │ │ │ └── users.svg │ │ ├── navbar.js │ │ └── side-navbar.css │ └── user │ │ ├── create │ │ ├── user-create-main.js │ │ └── user-create-modal.html.js │ │ ├── list │ │ ├── user-list-card-dom-appending.js │ │ ├── user-list-card.html.js │ │ ├── user-list-loading.js │ │ ├── user-list-main.js │ │ ├── user-list-skeleton-loader.css │ │ ├── user-list-skeleton-loader.js │ │ └── user-list.css │ │ ├── read │ │ ├── user-activity │ │ │ ├── activity-main.js │ │ │ └── user-activtiy-list.html.js │ │ ├── user-read-update-main.js │ │ └── user-update-contenteditable.js │ │ ├── update │ │ └── change-password-modal.html.js │ │ └── user.css ├── favicon.ico └── index.php ├── resources ├── migrations │ └── 20240425150810_db_change_1527712828662a_71da_9af_9f.php ├── schema │ ├── schema.php │ └── schema.sql ├── seeds │ ├── AdminUserSeeder.php │ ├── ClientSeeder.php │ ├── ClientStatusSeeder.php │ ├── NoteSeeder.php │ ├── UserFilterSettingSeeder.php │ ├── UserRoleSeeder.php │ └── UserSeeder.php └── translations │ ├── de_CH │ └── LC_MESSAGES │ │ ├── messages_de_CH.mo │ │ └── messages_de_CH.po │ ├── en_US │ └── LC_MESSAGES │ │ ├── messages_en_US.mo │ │ └── messages_en_US.po │ └── fr_CH │ └── LC_MESSAGES │ ├── messages_fr_CH.mo │ └── messages_fr_CH.po ├── src ├── Application │ ├── Data │ │ └── UserNetworkSessionData.php │ ├── ErrorRenderer │ │ └── ProdErrorPageRenderer.php │ ├── Middleware │ │ ├── CorsMiddleware.php │ │ ├── ForbiddenExceptionMiddleware.php │ │ ├── InvalidOperationExceptionMiddleware.php │ │ ├── LocaleMiddleware.php │ │ ├── PhpViewMiddleware.php │ │ ├── UserAuthenticationMiddleware.php │ │ ├── UserNetworkSessionDataMiddleware.php │ │ └── ValidationExceptionMiddleware.php │ └── Responder │ │ ├── JsonResponder.php │ │ ├── RedirectHandler.php │ │ └── TemplateRenderer.php ├── Common │ └── Trait │ │ └── EnumToArray.php ├── Domain │ ├── Exception │ │ ├── DomainRecordNotFoundException.php │ │ └── InvalidOperationException.php │ └── Validation │ │ └── RequestBodyKeyValidator.php ├── Infrastructure │ ├── Database │ │ ├── Exception │ │ │ ├── PersistenceException.php │ │ │ └── PersistenceRecordNotFoundException.php │ │ ├── Hydrator.php │ │ └── QueryFactory.php │ ├── JsCacheBusting │ │ └── JsImportCacheBuster.php │ ├── Locale │ │ └── LocaleConfigurator.php │ └── Settings │ │ └── Settings.php └── Module │ ├── Authentication │ ├── ChangeUserStatus │ │ ├── Repository │ │ │ └── UserStatusUpdaterRepository.php │ │ └── Service │ │ │ └── UserStatusUpdater.php │ ├── Data │ │ └── UserVerificationData.php │ ├── Exception │ │ └── UserAlreadyVerifiedException.php │ ├── Login │ │ ├── Action │ │ │ ├── LoginPageAction.php │ │ │ └── LoginSubmitAction.php │ │ ├── Domain │ │ │ ├── Exception │ │ │ │ ├── AuthenticationException.php │ │ │ │ ├── InvalidCredentialsException.php │ │ │ │ └── UnableToLoginStatusNotActiveException.php │ │ │ └── Service │ │ │ │ ├── AuthenticationLogger.php │ │ │ │ ├── LoginMailSender.php │ │ │ │ ├── LoginNonActiveUserHandler.php │ │ │ │ └── LoginVerifier.php │ │ └── Repository │ │ │ ├── AuthenticationLoggerRepository.php │ │ │ └── LoginUserFinderRepository.php │ ├── Logout │ │ └── Action │ │ │ └── LogoutPageAction.php │ ├── PasswordReset │ │ ├── Action │ │ │ ├── NewPasswordResetSubmitAction.php │ │ │ ├── PasswordChangeSubmitAction.php │ │ │ ├── PasswordForgottenEmailSubmitAction.php │ │ │ └── PasswordResetPageAction.php │ │ ├── Repository │ │ │ ├── PasswordChangerRepository.php │ │ │ └── PasswordResetUserFinderRepository.php │ │ └── Service │ │ │ ├── PasswordChanger.php │ │ │ ├── PasswordRecoveryEmailSender.php │ │ │ └── PasswordResetterWithToken.php │ ├── Register │ │ ├── Action │ │ │ └── RegisterVerifyProcessAction.php │ │ └── Service │ │ │ ├── RegisterTokenVerifier.php │ │ │ └── RegistrationMailSender.php │ ├── TokenVerification │ │ ├── Exception │ │ │ └── InvalidTokenException.php │ │ ├── Repository │ │ │ ├── VerificationTokenCreatorRepository.php │ │ │ ├── VerificationTokenDeleterRepository.php │ │ │ ├── VerificationTokenFinderRepository.php │ │ │ └── VerificationTokenUpdaterRepository.php │ │ └── Service │ │ │ ├── VerificationTokenCreator.php │ │ │ ├── VerificationTokenUpdater.php │ │ │ └── VerificationTokenVerifier.php │ ├── UnlockAccount │ │ ├── Action │ │ │ └── AccountUnlockProcessAction.php │ │ └── Service │ │ │ └── AccountUnlockTokenVerifier.php │ └── Validation │ │ ├── Repository │ │ └── UserPasswordHashFinderRepository.php │ │ └── Service │ │ └── AuthenticationValidator.php │ ├── Authorization │ ├── Enum │ │ └── Privilege.php │ ├── Exception │ │ └── ForbiddenException.php │ ├── Repository │ │ └── AuthorizationUserRoleFinderRepository.php │ └── Service │ │ └── AuthorizedByRoleChecker.php │ ├── Client │ ├── AssignUser │ │ └── Service │ │ │ └── ClientAssignUserAuthorizationChecker.php │ ├── Authorization │ │ └── Service │ │ │ └── ClientPrivilegeDeterminer.php │ ├── ClientStatus │ │ ├── Enum │ │ │ └── ClientStatus.php │ │ └── Repository │ │ │ └── ClientStatusFinderRepository.php │ ├── Create │ │ ├── Action │ │ │ ├── ApiClientCreateAction.php │ │ │ ├── ClientCreateAction.php │ │ │ └── ClientCreateDropdownOptionsFetchAction.php │ │ ├── Repository │ │ │ └── ClientCreatorRepository.php │ │ └── Service │ │ │ ├── ClientCreateAuthorizationChecker.php │ │ │ ├── ClientCreator.php │ │ │ └── ClientCreatorFromApi.php │ ├── Data │ │ └── ClientData.php │ ├── Delete │ │ ├── Action │ │ │ └── ClientDeleteAction.php │ │ ├── Repository │ │ │ └── ClientDeleterRepository.php │ │ └── Service │ │ │ ├── ClientDeleteAuthorizationChecker.php │ │ │ └── ClientDeleter.php │ ├── DropdownFinder │ │ ├── Data │ │ │ └── ClientDropdownValuesData.php │ │ └── Service │ │ │ └── ClientDropdownFinder.php │ ├── Enum │ │ └── ClientVigilanceLevel.php │ ├── FindOwner │ │ └── Repository │ │ │ └── ClientOwnerFinderRepository.php │ ├── List │ │ ├── Action │ │ │ ├── ClientFetchListAction.php │ │ │ └── ClientListPageAction.php │ │ ├── Data │ │ │ ├── ClientListResult.php │ │ │ └── ClientListResultCollection.php │ │ ├── Domain │ │ │ ├── Exception │ │ │ │ └── InvalidClientFilterException.php │ │ │ └── Service │ │ │ │ ├── ClientFilterWhereConditionBuilder.php │ │ │ │ ├── ClientFinderWithFilter.php │ │ │ │ ├── ClientListFilterChipProvider.php │ │ │ │ └── ClientListFinder.php │ │ └── Repository │ │ │ └── ClientListFinderRepository.php │ ├── Read │ │ ├── Action │ │ │ └── ClientReadPageAction.php │ │ ├── Data │ │ │ └── ClientReadResult.php │ │ ├── Repository │ │ │ ├── ClientReadFinderRepository.php │ │ │ └── ClientReadNoteAmountFinderRepository.php │ │ └── Service │ │ │ ├── ClientReadAuthorizationChecker.php │ │ │ └── ClientReadFinder.php │ ├── Update │ │ ├── Action │ │ │ └── ClientUpdateAction.php │ │ ├── Repository │ │ │ ├── ClientDeletedDateFinderRepository.php │ │ │ └── ClientUpdaterRepository.php │ │ └── Service │ │ │ ├── ClientUpdateAuthorizationChecker.php │ │ │ └── ClientUpdater.php │ └── Validation │ │ ├── Repository │ │ └── ClientStatusValidatorRepository.php │ │ └── Service │ │ └── ClientValidator.php │ ├── Dashboard │ ├── DisplayPage │ │ ├── Action │ │ │ └── DashboardPageAction.php │ │ ├── Data │ │ │ └── DashboardData.php │ │ └── Service │ │ │ ├── DashboardPanelProvider.php │ │ │ └── UserFilterChipProvider.php │ └── TogglePanel │ │ ├── Action │ │ └── DashboardTogglePanelAction.php │ │ └── Service │ │ └── ActiveDashboardPanelChanger.php │ ├── FilterSetting │ ├── Enum │ │ └── FilterModule.php │ ├── Find │ │ ├── Data │ │ │ └── FilterData.php │ │ ├── Repository │ │ │ └── UserFilterFinderRepository.php │ │ └── Service │ │ │ └── FilterSettingFinder.php │ └── Save │ │ ├── Repository │ │ └── UserFilterSaverRepository.php │ │ └── Service │ │ └── FilterSettingSaver.php │ ├── FormOption │ └── SexOption.php │ ├── Localization │ └── Action │ │ └── TranslateAction.php │ ├── Mail │ ├── Repository │ │ └── EmailLoggerRepository.php │ └── Service │ │ └── Mailer.php │ ├── Note │ ├── Authorization │ │ └── Service │ │ │ └── NotePrivilegeDeterminer.php │ ├── Create │ │ ├── Action │ │ │ └── NoteCreateAction.php │ │ ├── Repository │ │ │ └── NoteCreatorRepository.php │ │ └── Service │ │ │ ├── NoteCreateAuthorizationChecker.php │ │ │ └── NoteCreator.php │ ├── Data │ │ └── NoteData.php │ ├── Delete │ │ ├── Action │ │ │ └── NoteDeleteAction.php │ │ ├── Repository │ │ │ └── NoteDeleterRepository.php │ │ └── Service │ │ │ ├── NoteDeleteAuthorizationChecker.php │ │ │ └── NoteDeleter.php │ ├── Find │ │ ├── Repository │ │ │ └── NoteFinderRepository.php │ │ └── Service │ │ │ └── NoteFinder.php │ ├── List │ │ ├── Action │ │ │ └── NoteFetchListAction.php │ │ ├── Data │ │ │ └── NoteResultData.php │ │ ├── Domain │ │ │ ├── Exception │ │ │ │ └── InvalidNoteFilterException.php │ │ │ └── Service │ │ │ │ ├── NoteFilterFinder.php │ │ │ │ └── NoteListFinder.php │ │ └── Repository │ │ │ ├── NoteListClientFinderRepository.php │ │ │ └── NoteListFinderRepository.php │ ├── Read │ │ ├── Action │ │ │ └── NoteReadPageAction.php │ │ └── Service │ │ │ └── NoteReadAuthorizationChecker.php │ ├── Update │ │ ├── Action │ │ │ └── NoteUpdateAction.php │ │ ├── Repository │ │ │ └── NoteUpdaterRepository.php │ │ └── Service │ │ │ ├── NoteUpdateAuthorizationChecker.php │ │ │ └── NoteUpdater.php │ └── Validation │ │ ├── Repository │ │ └── NoteValidatorRepository.php │ │ └── Service │ │ └── NoteValidator.php │ ├── Security │ ├── Captcha │ │ └── Service │ │ │ └── SecurityCaptchaVerifier.php │ ├── Email │ │ ├── Repository │ │ │ └── EmailLogFinderRepository.php │ │ └── Service │ │ │ ├── EmailRequestFinder.php │ │ │ └── SecurityEmailChecker.php │ ├── Enum │ │ └── SecurityType.php │ ├── Exception │ │ └── SecurityException.php │ └── Login │ │ ├── Repository │ │ └── LoginLogFinderRepository.php │ │ └── Service │ │ ├── LoginRequestFinder.php │ │ └── SecurityLoginChecker.php │ ├── User │ ├── AssignRole │ │ └── Service │ │ │ └── UserAssignRoleAuthorizationChecker.php │ ├── Authorization │ │ └── Service │ │ │ └── UserPrivilegeDeterminer.php │ ├── Create │ │ ├── Action │ │ │ └── UserCreateAction.php │ │ ├── Repository │ │ │ └── UserCreatorRepository.php │ │ └── Service │ │ │ ├── UserCreateAuthorizationChecker.php │ │ │ └── UserCreator.php │ ├── Data │ │ ├── UserData.php │ │ ├── UserResultData.php │ │ └── UserRoleData.php │ ├── Delete │ │ ├── Action │ │ │ └── UserDeleteAction.php │ │ ├── Repository │ │ │ └── UserDeleterRepository.php │ │ └── Service │ │ │ ├── UserDeleteAuthorizationChecker.php │ │ │ └── UserDeleter.php │ ├── Enum │ │ ├── UserActivity.php │ │ ├── UserLang.php │ │ ├── UserRole.php │ │ ├── UserStatus.php │ │ └── UserTheme.php │ ├── Find │ │ ├── Repository │ │ │ └── UserFinderRepository.php │ │ └── Service │ │ │ └── UserFinder.php │ ├── FindAbbreviatedNameList │ │ └── Service │ │ │ ├── AbbreviatedUserNameListFinder.php │ │ │ └── UserNameAbbreviator.php │ ├── FindDropdownOptions │ │ ├── Action │ │ │ └── UserCreateDropdownOptionsFetchAction.php │ │ ├── Repository │ │ │ └── UserDropdownOptionsRoleFinderRepository.php │ │ └── Service │ │ │ ├── AuthorizedUserRoleFilterer.php │ │ │ └── UserDropdownOptionFinder.php │ ├── FindList │ │ └── Repository │ │ │ └── UserListFinderRepository.php │ ├── ListPage │ │ ├── Action │ │ │ ├── UserFetchListAction.php │ │ │ └── UserListPageAction.php │ │ └── Service │ │ │ └── UserListPageFinder.php │ ├── Read │ │ ├── Action │ │ │ └── UserReadPageAction.php │ │ └── Service │ │ │ ├── UserReadAuthorizationChecker.php │ │ │ └── UserReadFinder.php │ ├── Update │ │ ├── Action │ │ │ └── UserUpdateAction.php │ │ ├── Repository │ │ │ ├── UserUpdateAuthorizationRoleFinderRepository.php │ │ │ └── UserUpdaterRepository.php │ │ └── Service │ │ │ ├── UserUpdateAuthorizationChecker.php │ │ │ └── UserUpdater.php │ └── Validation │ │ ├── Repository │ │ ├── UserExistenceCheckerRepository.php │ │ └── ValidationUserRoleFinderRepository.php │ │ └── Service │ │ └── UserValidator.php │ ├── UserActivity │ ├── Data │ │ └── UserActivityData.php │ ├── Delete │ │ ├── Repository │ │ │ └── UserActivityDeleterRepository.php │ │ └── Service │ │ │ └── UserActivityDeleter.php │ ├── List │ │ ├── Action │ │ │ └── UserActivityFetchListAction.php │ │ ├── Repository │ │ │ └── UserActivityListFinderRepository.php │ │ └── Service │ │ │ └── UserActivityListFinder.php │ ├── Log │ │ ├── Repository │ │ │ └── UserActivityLoggerRepository.php │ │ └── Service │ │ │ └── UserActivityLogger.php │ └── ReadAuthorization │ │ └── Service │ │ └── UserActivityReadAuthorizationChecker.php │ ├── UserRole │ └── Find │ │ └── Repository │ │ └── UserRoleFinderRepository.php │ ├── Validation │ └── Exception │ │ └── ValidationException.php │ └── module-architecture.md ├── templates ├── authentication │ ├── email │ │ ├── de │ │ │ ├── login-but-locked.email.php │ │ │ ├── login-but-suspended.email.php │ │ │ ├── login-but-unverified.email.php │ │ │ ├── new-account.email.php │ │ │ └── password-reset.email.php │ │ ├── fr │ │ │ ├── login-but-locked.email.php │ │ │ ├── login-but-suspended.email.php │ │ │ ├── login-but-unverified.email.php │ │ │ ├── new-account.email.php │ │ │ └── password-reset.email.php │ │ ├── login-but-locked.email.php │ │ ├── login-but-suspended.email.php │ │ ├── login-but-unverified.email.php │ │ ├── new-account.email.php │ │ └── password-reset.email.php │ ├── login.html.php │ └── reset-password.html.php ├── client │ ├── client-read.html.php │ └── clients-list.html.php ├── dashboard │ └── dashboard.html.php ├── error │ └── error-page.html.php ├── layout │ ├── assets.html.php │ ├── flash-messages.html.php │ ├── footer.html.php │ ├── layout.html.php │ ├── navbar.html.php │ └── request-throttle.html.php └── user │ ├── user-list.html.php │ └── user-read.html.php └── tests ├── Fixture ├── ClientFixture.php ├── ClientStatusFixture.php ├── NoteFixture.php ├── UserActivityFixture.php ├── UserFilterSettingFixture.php ├── UserFixture.php └── UserRoleFixture.php ├── TestCase ├── Authentication │ ├── AccountUnlock │ │ └── AccountUnlockActionTest.php │ ├── Login │ │ ├── LoginPageActionTest.php │ │ ├── LoginProvider.php │ │ └── LoginSubmitActionTest.php │ ├── Logout │ │ └── LogoutActionTest.php │ ├── PasswordChange │ │ ├── PasswordChangeSubmitActionTest.php │ │ └── UserChangePasswordProvider.php │ ├── PasswordReset │ │ ├── PasswordForgottenEmailSubmitActionTest.php │ │ └── PasswordResetSubmitActionTest.php │ ├── Provider │ │ └── UserVerificationProvider.php │ └── Register │ │ └── RegisterVerifyActionTest.php ├── Client │ ├── Create │ │ ├── ClientCreateActionTest.php │ │ ├── ClientCreateDropdownOptionsTest.php │ │ └── ClientCreateProvider.php │ ├── CreateApi │ │ ├── ApiClientCreateActionTest.php │ │ └── ApiClientCreateProvider.php │ ├── Delete │ │ ├── ClientDeleteActionTest.php │ │ └── ClientDeleteProvider.php │ ├── List │ │ ├── ClientListActionTest.php │ │ └── ClientListProvider.php │ ├── Read │ │ ├── ClientReadPageActionTest.php │ │ └── ClientReadProvider.php │ └── Update │ │ ├── ClientUpdateActionTest.php │ │ └── ClientUpdateProvider.php ├── Dashboard │ ├── DashboardPageActionTest.php │ └── DashboardTogglePanelActionTest.php ├── Note │ ├── Create │ │ ├── NoteCreateActionTest.php │ │ └── NoteCreateProvider.php │ ├── Delete │ │ └── NoteDeleteActionTest.php │ ├── List │ │ ├── NoteListActionTest.php │ │ └── NoteListProvider.php │ ├── Provider │ │ └── NoteCreateUpdateDeleteProvider.php │ ├── Read │ │ └── NoteReadPageActionTest.php │ └── Update │ │ ├── NoteUpdateActionTest.php │ │ └── NoteUpdateProvider.php ├── Security │ ├── Integration │ │ └── LoginSecurityTest.php │ ├── Provider │ │ ├── EmailRequestProvider.php │ │ └── LoginRequestProvider.php │ └── Unit │ │ ├── SecurityEmailCheckerTest.php │ │ └── SecurityLoginCheckerTest.php ├── Translation │ └── TranslateActionTest.php ├── User │ ├── Create │ │ ├── UserCreateActionTest.php │ │ ├── UserCreateDropdownOptionsTest.php │ │ └── UserCreateProvider.php │ ├── Delete │ │ ├── UserDeleteActionTest.php │ │ └── UserDeleteProvider.php │ ├── List │ │ ├── UserListActionTest.php │ │ ├── UserListPageActionTest.php │ │ └── UserListProvider.php │ ├── Read │ │ ├── UserReadPageActionTest.php │ │ └── UserReadProvider.php │ └── Update │ │ ├── UserUpdateActionTest.php │ │ └── UserUpdateProvider.php └── UserActivity │ └── UserFetchActivityActionTest.php ├── Trait ├── AppTestTrait.php └── AuthorizationTestTrait.php └── docs.md /.cs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/.cs.php -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | ko_fi: samuelgfeller -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/.htaccess -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/README.md -------------------------------------------------------------------------------- /bin/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/bin/console.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/composer.json -------------------------------------------------------------------------------- /config/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/config/bootstrap.php -------------------------------------------------------------------------------- /config/container.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/config/container.php -------------------------------------------------------------------------------- /config/defaults.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/config/defaults.php -------------------------------------------------------------------------------- /config/env/env.dev.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/config/env/env.dev.php -------------------------------------------------------------------------------- /config/env/env.example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/config/env/env.example.php -------------------------------------------------------------------------------- /config/env/env.github.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/config/env/env.github.php -------------------------------------------------------------------------------- /config/env/env.phinx.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/config/env/env.phinx.php -------------------------------------------------------------------------------- /config/env/env.prod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/config/env/env.prod.php -------------------------------------------------------------------------------- /config/env/env.scrutinizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/config/env/env.scrutinizer.php -------------------------------------------------------------------------------- /config/env/env.test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/config/env/env.test.php -------------------------------------------------------------------------------- /config/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/config/functions.php -------------------------------------------------------------------------------- /config/middleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/config/middleware.php -------------------------------------------------------------------------------- /config/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/config/routes.php -------------------------------------------------------------------------------- /config/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/config/settings.php -------------------------------------------------------------------------------- /logs/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/phpstan.neon -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/assets/authentication/login-main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/authentication/login-main.js -------------------------------------------------------------------------------- /public/assets/authentication/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/authentication/login.css -------------------------------------------------------------------------------- /public/assets/authentication/password-reset-main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/authentication/password-reset-main.js -------------------------------------------------------------------------------- /public/assets/authentication/password-strength-checker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/authentication/password-strength-checker.js -------------------------------------------------------------------------------- /public/assets/authentication/throttle-timer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/authentication/throttle-timer.js -------------------------------------------------------------------------------- /public/assets/client/create/client-create-main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/client/create/client-create-main.js -------------------------------------------------------------------------------- /public/assets/client/create/client-create-modal.html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/client/create/client-create-modal.html.js -------------------------------------------------------------------------------- /public/assets/client/img/avatar_female.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/client/img/avatar_female.svg -------------------------------------------------------------------------------- /public/assets/client/img/avatar_male.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/client/img/avatar_male.svg -------------------------------------------------------------------------------- /public/assets/client/img/avatar_neutral.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/client/img/avatar_neutral.svg -------------------------------------------------------------------------------- /public/assets/client/img/eye-icon-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/client/img/eye-icon-active.svg -------------------------------------------------------------------------------- /public/assets/client/img/eye-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/client/img/eye-icon.svg -------------------------------------------------------------------------------- /public/assets/client/list/client-list-loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/client/list/client-list-loading.js -------------------------------------------------------------------------------- /public/assets/client/list/client-list-main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/client/list/client-list-main.js -------------------------------------------------------------------------------- /public/assets/client/list/client-list-profile-card.html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/client/list/client-list-profile-card.html.js -------------------------------------------------------------------------------- /public/assets/client/list/client-list-skeleton-loader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/client/list/client-list-skeleton-loader.css -------------------------------------------------------------------------------- /public/assets/client/list/client-list-skeleton-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/client/list/client-list-skeleton-loader.js -------------------------------------------------------------------------------- /public/assets/client/list/client-list.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/client/list/client-list.css -------------------------------------------------------------------------------- /public/assets/client/note/client-note.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/client/note/client-note.css -------------------------------------------------------------------------------- /public/assets/client/note/client-read-create-note.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/client/note/client-read-create-note.js -------------------------------------------------------------------------------- /public/assets/client/note/client-read-delete-note.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/client/note/client-read-delete-note.js -------------------------------------------------------------------------------- /public/assets/client/note/client-read-note-event-listener-setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/client/note/client-read-note-event-listener-setup.js -------------------------------------------------------------------------------- /public/assets/client/note/client-read-note-loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/client/note/client-read-note-loading.js -------------------------------------------------------------------------------- /public/assets/client/note/client-read-note-skeleton-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/client/note/client-read-note-skeleton-loader.js -------------------------------------------------------------------------------- /public/assets/client/note/client-read-save-existing-note.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/client/note/client-read-save-existing-note.js -------------------------------------------------------------------------------- /public/assets/client/note/client-read-template-note.html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/client/note/client-read-template-note.html.js -------------------------------------------------------------------------------- /public/assets/client/read/client-read-main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/client/read/client-read-main.js -------------------------------------------------------------------------------- /public/assets/client/read/client-read-note-skeleton-loader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/client/read/client-read-note-skeleton-loader.css -------------------------------------------------------------------------------- /public/assets/client/read/client-read-personal-info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/client/read/client-read-personal-info.js -------------------------------------------------------------------------------- /public/assets/client/read/client-read.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/client/read/client-read.css -------------------------------------------------------------------------------- /public/assets/client/update/client-update-contenteditable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/client/update/client-update-contenteditable.js -------------------------------------------------------------------------------- /public/assets/client/update/client-update-dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/client/update/client-update-dropdown.js -------------------------------------------------------------------------------- /public/assets/client/util/client-template-util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/client/util/client-template-util.js -------------------------------------------------------------------------------- /public/assets/dashboard/dashboard-main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/dashboard/dashboard-main.js -------------------------------------------------------------------------------- /public/assets/dashboard/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/dashboard/dashboard.css -------------------------------------------------------------------------------- /public/assets/error/Poppins-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/error/Poppins-Black.ttf -------------------------------------------------------------------------------- /public/assets/error/Poppins-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/error/Poppins-Bold.ttf -------------------------------------------------------------------------------- /public/assets/error/Poppins-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/error/Poppins-Light.ttf -------------------------------------------------------------------------------- /public/assets/error/Poppins-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/error/Poppins-Regular.ttf -------------------------------------------------------------------------------- /public/assets/error/prod-error-page.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/error/prod-error-page.css -------------------------------------------------------------------------------- /public/assets/error/prod-error-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/error/prod-error-page.js -------------------------------------------------------------------------------- /public/assets/general/ajax/ajax-util/fail-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/ajax/ajax-util/fail-handler.js -------------------------------------------------------------------------------- /public/assets/general/ajax/fetch-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/ajax/fetch-data.js -------------------------------------------------------------------------------- /public/assets/general/ajax/fetch-translation-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/ajax/fetch-translation-data.js -------------------------------------------------------------------------------- /public/assets/general/ajax/modal-submit-request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/ajax/modal-submit-request.js -------------------------------------------------------------------------------- /public/assets/general/ajax/submit-delete-request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/ajax/submit-delete-request.js -------------------------------------------------------------------------------- /public/assets/general/ajax/submit-update-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/ajax/submit-update-data.js -------------------------------------------------------------------------------- /public/assets/general/dark-mode/dark-mode-toggle-switch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/dark-mode/dark-mode-toggle-switch.css -------------------------------------------------------------------------------- /public/assets/general/dark-mode/dark-mode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/dark-mode/dark-mode.js -------------------------------------------------------------------------------- /public/assets/general/dark-mode/moon-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/dark-mode/moon-icon.svg -------------------------------------------------------------------------------- /public/assets/general/dark-mode/sun-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/dark-mode/sun-icon.svg -------------------------------------------------------------------------------- /public/assets/general/event-handler/open-link-on-html-element.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/event-handler/open-link-on-html-element.js -------------------------------------------------------------------------------- /public/assets/general/event-handler/trigger-click-on-enter-keypress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/event-handler/trigger-click-on-enter-keypress.js -------------------------------------------------------------------------------- /public/assets/general/general-css/colors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/general-css/colors.css -------------------------------------------------------------------------------- /public/assets/general/general-css/general.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/general-css/general.css -------------------------------------------------------------------------------- /public/assets/general/general-css/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/general-css/layout.css -------------------------------------------------------------------------------- /public/assets/general/general-font/CenturyGothic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/general-font/CenturyGothic.ttf -------------------------------------------------------------------------------- /public/assets/general/general-font/Comfortaa.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/general-font/Comfortaa.ttf -------------------------------------------------------------------------------- /public/assets/general/general-font/DMSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/general-font/DMSans-Regular.ttf -------------------------------------------------------------------------------- /public/assets/general/general-font/Montserrat.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/general-font/Montserrat.ttf -------------------------------------------------------------------------------- /public/assets/general/general-font/SF-Pro/SF-Pro-Display-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/general-font/SF-Pro/SF-Pro-Display-Bold.otf -------------------------------------------------------------------------------- /public/assets/general/general-font/SF-Pro/SF-Pro-Display-Heavy.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/general-font/SF-Pro/SF-Pro-Display-Heavy.otf -------------------------------------------------------------------------------- /public/assets/general/general-font/SF-Pro/SF-Pro-Display-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/general-font/SF-Pro/SF-Pro-Display-Medium.otf -------------------------------------------------------------------------------- /public/assets/general/general-font/SF-Pro/SF-Pro-Display-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/general-font/SF-Pro/SF-Pro-Display-Regular.otf -------------------------------------------------------------------------------- /public/assets/general/general-font/SF-Pro/SF-Pro-Display-Semibold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/general-font/SF-Pro/SF-Pro-Display-Semibold.otf -------------------------------------------------------------------------------- /public/assets/general/general-font/SF-Pro/SF-Pro-Text-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/general-font/SF-Pro/SF-Pro-Text-Bold.otf -------------------------------------------------------------------------------- /public/assets/general/general-font/SF-Pro/SF-Pro-Text-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/general-font/SF-Pro/SF-Pro-Text-Medium.otf -------------------------------------------------------------------------------- /public/assets/general/general-font/SF-Pro/SF-Pro-Text-MediumItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/general-font/SF-Pro/SF-Pro-Text-MediumItalic.otf -------------------------------------------------------------------------------- /public/assets/general/general-font/SF-Pro/SF-Pro-Text-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/general-font/SF-Pro/SF-Pro-Text-Regular.otf -------------------------------------------------------------------------------- /public/assets/general/general-font/SF-Pro/SF-Pro-Text-RegularItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/general-font/SF-Pro/SF-Pro-Text-RegularItalic.otf -------------------------------------------------------------------------------- /public/assets/general/general-font/SF-Pro/SF-Pro-Text-Thin.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/general-font/SF-Pro/SF-Pro-Text-Thin.otf -------------------------------------------------------------------------------- /public/assets/general/general-font/SF-Pro/SF-Pro-Text-ThinItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/general-font/SF-Pro/SF-Pro-Text-ThinItalic.otf -------------------------------------------------------------------------------- /public/assets/general/general-font/SF-Pro/SF-Pro.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/general-font/SF-Pro/SF-Pro.ttf -------------------------------------------------------------------------------- /public/assets/general/general-font/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/general-font/fonts.css -------------------------------------------------------------------------------- /public/assets/general/general-img/action/arrow-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/general-img/action/arrow-icon.svg -------------------------------------------------------------------------------- /public/assets/general/general-img/action/del-btn-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/general-img/action/del-btn-icon.svg -------------------------------------------------------------------------------- /public/assets/general/general-img/action/material-edit-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/general-img/action/material-edit-icon.svg -------------------------------------------------------------------------------- /public/assets/general/general-img/action/plus-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/general-img/action/plus-icon.svg -------------------------------------------------------------------------------- /public/assets/general/general-img/action/trash-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/general-img/action/trash-icon.svg -------------------------------------------------------------------------------- /public/assets/general/general-img/action/undelete-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/general-img/action/undelete-icon.svg -------------------------------------------------------------------------------- /public/assets/general/general-img/checkmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/general-img/checkmark.svg -------------------------------------------------------------------------------- /public/assets/general/general-img/github-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/general-img/github-icon.svg -------------------------------------------------------------------------------- /public/assets/general/general-img/heart-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/general-img/heart-icon.svg -------------------------------------------------------------------------------- /public/assets/general/general-img/personal-data-icons/birthdate-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/general-img/personal-data-icons/birthdate-icon.svg -------------------------------------------------------------------------------- /public/assets/general/general-img/personal-data-icons/email-icon-filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/general-img/personal-data-icons/email-icon-filled.svg -------------------------------------------------------------------------------- /public/assets/general/general-img/personal-data-icons/email-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/general-img/personal-data-icons/email-icon.svg -------------------------------------------------------------------------------- /public/assets/general/general-img/personal-data-icons/gender-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/general-img/personal-data-icons/gender-icon.svg -------------------------------------------------------------------------------- /public/assets/general/general-img/personal-data-icons/location-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/general-img/personal-data-icons/location-icon.svg -------------------------------------------------------------------------------- /public/assets/general/general-img/personal-data-icons/phone-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/general-img/personal-data-icons/phone-icon.svg -------------------------------------------------------------------------------- /public/assets/general/general-img/personal-data-icons/warning-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/general-img/personal-data-icons/warning-icon.svg -------------------------------------------------------------------------------- /public/assets/general/general-js/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/general-js/config.js -------------------------------------------------------------------------------- /public/assets/general/general-js/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/general-js/functions.js -------------------------------------------------------------------------------- /public/assets/general/general-js/initialization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/general-js/initialization.js -------------------------------------------------------------------------------- /public/assets/general/page-behaviour/scroll-to-anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/page-behaviour/scroll-to-anchor.js -------------------------------------------------------------------------------- /public/assets/general/page-component/button/plus-button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/page-component/button/plus-button.css -------------------------------------------------------------------------------- /public/assets/general/page-component/collapsible/collapsible.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/page-component/collapsible/collapsible.js -------------------------------------------------------------------------------- /public/assets/general/page-component/contenteditable/contenteditable-main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/page-component/contenteditable/contenteditable-main.js -------------------------------------------------------------------------------- /public/assets/general/page-component/contenteditable/contenteditable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/page-component/contenteditable/contenteditable.css -------------------------------------------------------------------------------- /public/assets/general/page-component/filter-chip/filter-chip.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/page-component/filter-chip/filter-chip.css -------------------------------------------------------------------------------- /public/assets/general/page-component/filter-chip/filter-chip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/page-component/filter-chip/filter-chip.js -------------------------------------------------------------------------------- /public/assets/general/page-component/flash-message/flash-message.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/page-component/flash-message/flash-message.css -------------------------------------------------------------------------------- /public/assets/general/page-component/flash-message/flash-message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/page-component/flash-message/flash-message.js -------------------------------------------------------------------------------- /public/assets/general/page-component/flash-message/img/flash-checkmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/page-component/flash-message/img/flash-checkmark.svg -------------------------------------------------------------------------------- /public/assets/general/page-component/flash-message/img/flash-error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/page-component/flash-message/img/flash-error.svg -------------------------------------------------------------------------------- /public/assets/general/page-component/flash-message/img/flash-info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/page-component/flash-message/img/flash-info.svg -------------------------------------------------------------------------------- /public/assets/general/page-component/flash-message/img/flash-warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/page-component/flash-message/img/flash-warning.svg -------------------------------------------------------------------------------- /public/assets/general/page-component/form/form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/page-component/form/form.css -------------------------------------------------------------------------------- /public/assets/general/page-component/loader/animated-checkmark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/page-component/loader/animated-checkmark.css -------------------------------------------------------------------------------- /public/assets/general/page-component/modal/alert-modal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/page-component/modal/alert-modal.css -------------------------------------------------------------------------------- /public/assets/general/page-component/modal/alert-modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/page-component/modal/alert-modal.js -------------------------------------------------------------------------------- /public/assets/general/page-component/modal/dropdown-request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/page-component/modal/dropdown-request.js -------------------------------------------------------------------------------- /public/assets/general/page-component/modal/form-modal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/page-component/modal/form-modal.css -------------------------------------------------------------------------------- /public/assets/general/page-component/modal/modal-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/page-component/modal/modal-form.js -------------------------------------------------------------------------------- /public/assets/general/page-component/modal/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/page-component/modal/modal.js -------------------------------------------------------------------------------- /public/assets/general/page-component/panel/panel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/page-component/panel/panel.css -------------------------------------------------------------------------------- /public/assets/general/page-component/skeleton-loader/skeleton-loader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/page-component/skeleton-loader/skeleton-loader.css -------------------------------------------------------------------------------- /public/assets/general/page-component/table/responsive-table.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/page-component/table/responsive-table.css -------------------------------------------------------------------------------- /public/assets/general/page-component/textarea/auto-resizing-textarea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/page-component/textarea/auto-resizing-textarea.js -------------------------------------------------------------------------------- /public/assets/general/template/template-util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/template/template-util.js -------------------------------------------------------------------------------- /public/assets/general/validation/form-validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/general/validation/form-validation.js -------------------------------------------------------------------------------- /public/assets/navbar/img/gallery-tiles-filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/navbar/img/gallery-tiles-filled.svg -------------------------------------------------------------------------------- /public/assets/navbar/img/gallery-tiles-half-filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/navbar/img/gallery-tiles-half-filled.svg -------------------------------------------------------------------------------- /public/assets/navbar/img/gallery-tiles.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/navbar/img/gallery-tiles.svg -------------------------------------------------------------------------------- /public/assets/navbar/img/logout-filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/navbar/img/logout-filled.svg -------------------------------------------------------------------------------- /public/assets/navbar/img/logout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/navbar/img/logout.svg -------------------------------------------------------------------------------- /public/assets/navbar/img/people-filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/navbar/img/people-filled.svg -------------------------------------------------------------------------------- /public/assets/navbar/img/people.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/navbar/img/people.svg -------------------------------------------------------------------------------- /public/assets/navbar/img/user-icon-filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/navbar/img/user-icon-filled.svg -------------------------------------------------------------------------------- /public/assets/navbar/img/user-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/navbar/img/user-icon.svg -------------------------------------------------------------------------------- /public/assets/navbar/img/users-filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/navbar/img/users-filled.svg -------------------------------------------------------------------------------- /public/assets/navbar/img/users.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/navbar/img/users.svg -------------------------------------------------------------------------------- /public/assets/navbar/navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/navbar/navbar.js -------------------------------------------------------------------------------- /public/assets/navbar/side-navbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/navbar/side-navbar.css -------------------------------------------------------------------------------- /public/assets/user/create/user-create-main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/user/create/user-create-main.js -------------------------------------------------------------------------------- /public/assets/user/create/user-create-modal.html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/user/create/user-create-modal.html.js -------------------------------------------------------------------------------- /public/assets/user/list/user-list-card-dom-appending.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/user/list/user-list-card-dom-appending.js -------------------------------------------------------------------------------- /public/assets/user/list/user-list-card.html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/user/list/user-list-card.html.js -------------------------------------------------------------------------------- /public/assets/user/list/user-list-loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/user/list/user-list-loading.js -------------------------------------------------------------------------------- /public/assets/user/list/user-list-main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/user/list/user-list-main.js -------------------------------------------------------------------------------- /public/assets/user/list/user-list-skeleton-loader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/user/list/user-list-skeleton-loader.css -------------------------------------------------------------------------------- /public/assets/user/list/user-list-skeleton-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/user/list/user-list-skeleton-loader.js -------------------------------------------------------------------------------- /public/assets/user/list/user-list.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/user/list/user-list.css -------------------------------------------------------------------------------- /public/assets/user/read/user-activity/activity-main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/user/read/user-activity/activity-main.js -------------------------------------------------------------------------------- /public/assets/user/read/user-activity/user-activtiy-list.html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/user/read/user-activity/user-activtiy-list.html.js -------------------------------------------------------------------------------- /public/assets/user/read/user-read-update-main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/user/read/user-read-update-main.js -------------------------------------------------------------------------------- /public/assets/user/read/user-update-contenteditable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/user/read/user-update-contenteditable.js -------------------------------------------------------------------------------- /public/assets/user/update/change-password-modal.html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/user/update/change-password-modal.html.js -------------------------------------------------------------------------------- /public/assets/user/user.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/assets/user/user.css -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/public/index.php -------------------------------------------------------------------------------- /resources/migrations/20240425150810_db_change_1527712828662a_71da_9af_9f.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/resources/migrations/20240425150810_db_change_1527712828662a_71da_9af_9f.php -------------------------------------------------------------------------------- /resources/schema/schema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/resources/schema/schema.php -------------------------------------------------------------------------------- /resources/schema/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/resources/schema/schema.sql -------------------------------------------------------------------------------- /resources/seeds/AdminUserSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/resources/seeds/AdminUserSeeder.php -------------------------------------------------------------------------------- /resources/seeds/ClientSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/resources/seeds/ClientSeeder.php -------------------------------------------------------------------------------- /resources/seeds/ClientStatusSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/resources/seeds/ClientStatusSeeder.php -------------------------------------------------------------------------------- /resources/seeds/NoteSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/resources/seeds/NoteSeeder.php -------------------------------------------------------------------------------- /resources/seeds/UserFilterSettingSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/resources/seeds/UserFilterSettingSeeder.php -------------------------------------------------------------------------------- /resources/seeds/UserRoleSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/resources/seeds/UserRoleSeeder.php -------------------------------------------------------------------------------- /resources/seeds/UserSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/resources/seeds/UserSeeder.php -------------------------------------------------------------------------------- /resources/translations/de_CH/LC_MESSAGES/messages_de_CH.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/resources/translations/de_CH/LC_MESSAGES/messages_de_CH.mo -------------------------------------------------------------------------------- /resources/translations/de_CH/LC_MESSAGES/messages_de_CH.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/resources/translations/de_CH/LC_MESSAGES/messages_de_CH.po -------------------------------------------------------------------------------- /resources/translations/en_US/LC_MESSAGES/messages_en_US.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/resources/translations/en_US/LC_MESSAGES/messages_en_US.mo -------------------------------------------------------------------------------- /resources/translations/en_US/LC_MESSAGES/messages_en_US.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/resources/translations/en_US/LC_MESSAGES/messages_en_US.po -------------------------------------------------------------------------------- /resources/translations/fr_CH/LC_MESSAGES/messages_fr_CH.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/resources/translations/fr_CH/LC_MESSAGES/messages_fr_CH.mo -------------------------------------------------------------------------------- /resources/translations/fr_CH/LC_MESSAGES/messages_fr_CH.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/resources/translations/fr_CH/LC_MESSAGES/messages_fr_CH.po -------------------------------------------------------------------------------- /src/Application/Data/UserNetworkSessionData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Application/Data/UserNetworkSessionData.php -------------------------------------------------------------------------------- /src/Application/ErrorRenderer/ProdErrorPageRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Application/ErrorRenderer/ProdErrorPageRenderer.php -------------------------------------------------------------------------------- /src/Application/Middleware/CorsMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Application/Middleware/CorsMiddleware.php -------------------------------------------------------------------------------- /src/Application/Middleware/ForbiddenExceptionMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Application/Middleware/ForbiddenExceptionMiddleware.php -------------------------------------------------------------------------------- /src/Application/Middleware/InvalidOperationExceptionMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Application/Middleware/InvalidOperationExceptionMiddleware.php -------------------------------------------------------------------------------- /src/Application/Middleware/LocaleMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Application/Middleware/LocaleMiddleware.php -------------------------------------------------------------------------------- /src/Application/Middleware/PhpViewMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Application/Middleware/PhpViewMiddleware.php -------------------------------------------------------------------------------- /src/Application/Middleware/UserAuthenticationMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Application/Middleware/UserAuthenticationMiddleware.php -------------------------------------------------------------------------------- /src/Application/Middleware/UserNetworkSessionDataMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Application/Middleware/UserNetworkSessionDataMiddleware.php -------------------------------------------------------------------------------- /src/Application/Middleware/ValidationExceptionMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Application/Middleware/ValidationExceptionMiddleware.php -------------------------------------------------------------------------------- /src/Application/Responder/JsonResponder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Application/Responder/JsonResponder.php -------------------------------------------------------------------------------- /src/Application/Responder/RedirectHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Application/Responder/RedirectHandler.php -------------------------------------------------------------------------------- /src/Application/Responder/TemplateRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Application/Responder/TemplateRenderer.php -------------------------------------------------------------------------------- /src/Common/Trait/EnumToArray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Common/Trait/EnumToArray.php -------------------------------------------------------------------------------- /src/Domain/Exception/DomainRecordNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Domain/Exception/DomainRecordNotFoundException.php -------------------------------------------------------------------------------- /src/Domain/Exception/InvalidOperationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Domain/Exception/InvalidOperationException.php -------------------------------------------------------------------------------- /src/Domain/Validation/RequestBodyKeyValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Domain/Validation/RequestBodyKeyValidator.php -------------------------------------------------------------------------------- /src/Infrastructure/Database/Exception/PersistenceException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Infrastructure/Database/Exception/PersistenceException.php -------------------------------------------------------------------------------- /src/Infrastructure/Database/Exception/PersistenceRecordNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Infrastructure/Database/Exception/PersistenceRecordNotFoundException.php -------------------------------------------------------------------------------- /src/Infrastructure/Database/Hydrator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Infrastructure/Database/Hydrator.php -------------------------------------------------------------------------------- /src/Infrastructure/Database/QueryFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Infrastructure/Database/QueryFactory.php -------------------------------------------------------------------------------- /src/Infrastructure/JsCacheBusting/JsImportCacheBuster.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Infrastructure/JsCacheBusting/JsImportCacheBuster.php -------------------------------------------------------------------------------- /src/Infrastructure/Locale/LocaleConfigurator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Infrastructure/Locale/LocaleConfigurator.php -------------------------------------------------------------------------------- /src/Infrastructure/Settings/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Infrastructure/Settings/Settings.php -------------------------------------------------------------------------------- /src/Module/Authentication/ChangeUserStatus/Repository/UserStatusUpdaterRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Authentication/ChangeUserStatus/Repository/UserStatusUpdaterRepository.php -------------------------------------------------------------------------------- /src/Module/Authentication/ChangeUserStatus/Service/UserStatusUpdater.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Authentication/ChangeUserStatus/Service/UserStatusUpdater.php -------------------------------------------------------------------------------- /src/Module/Authentication/Data/UserVerificationData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Authentication/Data/UserVerificationData.php -------------------------------------------------------------------------------- /src/Module/Authentication/Exception/UserAlreadyVerifiedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Authentication/Exception/UserAlreadyVerifiedException.php -------------------------------------------------------------------------------- /src/Module/Authentication/Login/Action/LoginPageAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Authentication/Login/Action/LoginPageAction.php -------------------------------------------------------------------------------- /src/Module/Authentication/Login/Action/LoginSubmitAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Authentication/Login/Action/LoginSubmitAction.php -------------------------------------------------------------------------------- /src/Module/Authentication/Login/Domain/Exception/AuthenticationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Authentication/Login/Domain/Exception/AuthenticationException.php -------------------------------------------------------------------------------- /src/Module/Authentication/Login/Domain/Exception/InvalidCredentialsException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Authentication/Login/Domain/Exception/InvalidCredentialsException.php -------------------------------------------------------------------------------- /src/Module/Authentication/Login/Domain/Exception/UnableToLoginStatusNotActiveException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Authentication/Login/Domain/Exception/UnableToLoginStatusNotActiveException.php -------------------------------------------------------------------------------- /src/Module/Authentication/Login/Domain/Service/AuthenticationLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Authentication/Login/Domain/Service/AuthenticationLogger.php -------------------------------------------------------------------------------- /src/Module/Authentication/Login/Domain/Service/LoginMailSender.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Authentication/Login/Domain/Service/LoginMailSender.php -------------------------------------------------------------------------------- /src/Module/Authentication/Login/Domain/Service/LoginNonActiveUserHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Authentication/Login/Domain/Service/LoginNonActiveUserHandler.php -------------------------------------------------------------------------------- /src/Module/Authentication/Login/Domain/Service/LoginVerifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Authentication/Login/Domain/Service/LoginVerifier.php -------------------------------------------------------------------------------- /src/Module/Authentication/Login/Repository/AuthenticationLoggerRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Authentication/Login/Repository/AuthenticationLoggerRepository.php -------------------------------------------------------------------------------- /src/Module/Authentication/Login/Repository/LoginUserFinderRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Authentication/Login/Repository/LoginUserFinderRepository.php -------------------------------------------------------------------------------- /src/Module/Authentication/Logout/Action/LogoutPageAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Authentication/Logout/Action/LogoutPageAction.php -------------------------------------------------------------------------------- /src/Module/Authentication/PasswordReset/Action/NewPasswordResetSubmitAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Authentication/PasswordReset/Action/NewPasswordResetSubmitAction.php -------------------------------------------------------------------------------- /src/Module/Authentication/PasswordReset/Action/PasswordChangeSubmitAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Authentication/PasswordReset/Action/PasswordChangeSubmitAction.php -------------------------------------------------------------------------------- /src/Module/Authentication/PasswordReset/Action/PasswordForgottenEmailSubmitAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Authentication/PasswordReset/Action/PasswordForgottenEmailSubmitAction.php -------------------------------------------------------------------------------- /src/Module/Authentication/PasswordReset/Action/PasswordResetPageAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Authentication/PasswordReset/Action/PasswordResetPageAction.php -------------------------------------------------------------------------------- /src/Module/Authentication/PasswordReset/Repository/PasswordChangerRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Authentication/PasswordReset/Repository/PasswordChangerRepository.php -------------------------------------------------------------------------------- /src/Module/Authentication/PasswordReset/Repository/PasswordResetUserFinderRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Authentication/PasswordReset/Repository/PasswordResetUserFinderRepository.php -------------------------------------------------------------------------------- /src/Module/Authentication/PasswordReset/Service/PasswordChanger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Authentication/PasswordReset/Service/PasswordChanger.php -------------------------------------------------------------------------------- /src/Module/Authentication/PasswordReset/Service/PasswordRecoveryEmailSender.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Authentication/PasswordReset/Service/PasswordRecoveryEmailSender.php -------------------------------------------------------------------------------- /src/Module/Authentication/PasswordReset/Service/PasswordResetterWithToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Authentication/PasswordReset/Service/PasswordResetterWithToken.php -------------------------------------------------------------------------------- /src/Module/Authentication/Register/Action/RegisterVerifyProcessAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Authentication/Register/Action/RegisterVerifyProcessAction.php -------------------------------------------------------------------------------- /src/Module/Authentication/Register/Service/RegisterTokenVerifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Authentication/Register/Service/RegisterTokenVerifier.php -------------------------------------------------------------------------------- /src/Module/Authentication/Register/Service/RegistrationMailSender.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Authentication/Register/Service/RegistrationMailSender.php -------------------------------------------------------------------------------- /src/Module/Authentication/TokenVerification/Exception/InvalidTokenException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Authentication/TokenVerification/Exception/InvalidTokenException.php -------------------------------------------------------------------------------- /src/Module/Authentication/TokenVerification/Repository/VerificationTokenCreatorRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Authentication/TokenVerification/Repository/VerificationTokenCreatorRepository.php -------------------------------------------------------------------------------- /src/Module/Authentication/TokenVerification/Repository/VerificationTokenDeleterRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Authentication/TokenVerification/Repository/VerificationTokenDeleterRepository.php -------------------------------------------------------------------------------- /src/Module/Authentication/TokenVerification/Repository/VerificationTokenFinderRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Authentication/TokenVerification/Repository/VerificationTokenFinderRepository.php -------------------------------------------------------------------------------- /src/Module/Authentication/TokenVerification/Repository/VerificationTokenUpdaterRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Authentication/TokenVerification/Repository/VerificationTokenUpdaterRepository.php -------------------------------------------------------------------------------- /src/Module/Authentication/TokenVerification/Service/VerificationTokenCreator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Authentication/TokenVerification/Service/VerificationTokenCreator.php -------------------------------------------------------------------------------- /src/Module/Authentication/TokenVerification/Service/VerificationTokenUpdater.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Authentication/TokenVerification/Service/VerificationTokenUpdater.php -------------------------------------------------------------------------------- /src/Module/Authentication/TokenVerification/Service/VerificationTokenVerifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Authentication/TokenVerification/Service/VerificationTokenVerifier.php -------------------------------------------------------------------------------- /src/Module/Authentication/UnlockAccount/Action/AccountUnlockProcessAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Authentication/UnlockAccount/Action/AccountUnlockProcessAction.php -------------------------------------------------------------------------------- /src/Module/Authentication/UnlockAccount/Service/AccountUnlockTokenVerifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Authentication/UnlockAccount/Service/AccountUnlockTokenVerifier.php -------------------------------------------------------------------------------- /src/Module/Authentication/Validation/Repository/UserPasswordHashFinderRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Authentication/Validation/Repository/UserPasswordHashFinderRepository.php -------------------------------------------------------------------------------- /src/Module/Authentication/Validation/Service/AuthenticationValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Authentication/Validation/Service/AuthenticationValidator.php -------------------------------------------------------------------------------- /src/Module/Authorization/Enum/Privilege.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Authorization/Enum/Privilege.php -------------------------------------------------------------------------------- /src/Module/Authorization/Exception/ForbiddenException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Authorization/Exception/ForbiddenException.php -------------------------------------------------------------------------------- /src/Module/Authorization/Repository/AuthorizationUserRoleFinderRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Authorization/Repository/AuthorizationUserRoleFinderRepository.php -------------------------------------------------------------------------------- /src/Module/Authorization/Service/AuthorizedByRoleChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Authorization/Service/AuthorizedByRoleChecker.php -------------------------------------------------------------------------------- /src/Module/Client/AssignUser/Service/ClientAssignUserAuthorizationChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Client/AssignUser/Service/ClientAssignUserAuthorizationChecker.php -------------------------------------------------------------------------------- /src/Module/Client/Authorization/Service/ClientPrivilegeDeterminer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Client/Authorization/Service/ClientPrivilegeDeterminer.php -------------------------------------------------------------------------------- /src/Module/Client/ClientStatus/Enum/ClientStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Client/ClientStatus/Enum/ClientStatus.php -------------------------------------------------------------------------------- /src/Module/Client/ClientStatus/Repository/ClientStatusFinderRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Client/ClientStatus/Repository/ClientStatusFinderRepository.php -------------------------------------------------------------------------------- /src/Module/Client/Create/Action/ApiClientCreateAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Client/Create/Action/ApiClientCreateAction.php -------------------------------------------------------------------------------- /src/Module/Client/Create/Action/ClientCreateAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Client/Create/Action/ClientCreateAction.php -------------------------------------------------------------------------------- /src/Module/Client/Create/Action/ClientCreateDropdownOptionsFetchAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Client/Create/Action/ClientCreateDropdownOptionsFetchAction.php -------------------------------------------------------------------------------- /src/Module/Client/Create/Repository/ClientCreatorRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Client/Create/Repository/ClientCreatorRepository.php -------------------------------------------------------------------------------- /src/Module/Client/Create/Service/ClientCreateAuthorizationChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Client/Create/Service/ClientCreateAuthorizationChecker.php -------------------------------------------------------------------------------- /src/Module/Client/Create/Service/ClientCreator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Client/Create/Service/ClientCreator.php -------------------------------------------------------------------------------- /src/Module/Client/Create/Service/ClientCreatorFromApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Client/Create/Service/ClientCreatorFromApi.php -------------------------------------------------------------------------------- /src/Module/Client/Data/ClientData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Client/Data/ClientData.php -------------------------------------------------------------------------------- /src/Module/Client/Delete/Action/ClientDeleteAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Client/Delete/Action/ClientDeleteAction.php -------------------------------------------------------------------------------- /src/Module/Client/Delete/Repository/ClientDeleterRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Client/Delete/Repository/ClientDeleterRepository.php -------------------------------------------------------------------------------- /src/Module/Client/Delete/Service/ClientDeleteAuthorizationChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Client/Delete/Service/ClientDeleteAuthorizationChecker.php -------------------------------------------------------------------------------- /src/Module/Client/Delete/Service/ClientDeleter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Client/Delete/Service/ClientDeleter.php -------------------------------------------------------------------------------- /src/Module/Client/DropdownFinder/Data/ClientDropdownValuesData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Client/DropdownFinder/Data/ClientDropdownValuesData.php -------------------------------------------------------------------------------- /src/Module/Client/DropdownFinder/Service/ClientDropdownFinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Client/DropdownFinder/Service/ClientDropdownFinder.php -------------------------------------------------------------------------------- /src/Module/Client/Enum/ClientVigilanceLevel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Client/Enum/ClientVigilanceLevel.php -------------------------------------------------------------------------------- /src/Module/Client/FindOwner/Repository/ClientOwnerFinderRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Client/FindOwner/Repository/ClientOwnerFinderRepository.php -------------------------------------------------------------------------------- /src/Module/Client/List/Action/ClientFetchListAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Client/List/Action/ClientFetchListAction.php -------------------------------------------------------------------------------- /src/Module/Client/List/Action/ClientListPageAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Client/List/Action/ClientListPageAction.php -------------------------------------------------------------------------------- /src/Module/Client/List/Data/ClientListResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Client/List/Data/ClientListResult.php -------------------------------------------------------------------------------- /src/Module/Client/List/Data/ClientListResultCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Client/List/Data/ClientListResultCollection.php -------------------------------------------------------------------------------- /src/Module/Client/List/Domain/Exception/InvalidClientFilterException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Client/List/Domain/Exception/InvalidClientFilterException.php -------------------------------------------------------------------------------- /src/Module/Client/List/Domain/Service/ClientFilterWhereConditionBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Client/List/Domain/Service/ClientFilterWhereConditionBuilder.php -------------------------------------------------------------------------------- /src/Module/Client/List/Domain/Service/ClientFinderWithFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Client/List/Domain/Service/ClientFinderWithFilter.php -------------------------------------------------------------------------------- /src/Module/Client/List/Domain/Service/ClientListFilterChipProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Client/List/Domain/Service/ClientListFilterChipProvider.php -------------------------------------------------------------------------------- /src/Module/Client/List/Domain/Service/ClientListFinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Client/List/Domain/Service/ClientListFinder.php -------------------------------------------------------------------------------- /src/Module/Client/List/Repository/ClientListFinderRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Client/List/Repository/ClientListFinderRepository.php -------------------------------------------------------------------------------- /src/Module/Client/Read/Action/ClientReadPageAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Client/Read/Action/ClientReadPageAction.php -------------------------------------------------------------------------------- /src/Module/Client/Read/Data/ClientReadResult.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Client/Read/Data/ClientReadResult.php -------------------------------------------------------------------------------- /src/Module/Client/Read/Repository/ClientReadFinderRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Client/Read/Repository/ClientReadFinderRepository.php -------------------------------------------------------------------------------- /src/Module/Client/Read/Repository/ClientReadNoteAmountFinderRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Client/Read/Repository/ClientReadNoteAmountFinderRepository.php -------------------------------------------------------------------------------- /src/Module/Client/Read/Service/ClientReadAuthorizationChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Client/Read/Service/ClientReadAuthorizationChecker.php -------------------------------------------------------------------------------- /src/Module/Client/Read/Service/ClientReadFinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Client/Read/Service/ClientReadFinder.php -------------------------------------------------------------------------------- /src/Module/Client/Update/Action/ClientUpdateAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Client/Update/Action/ClientUpdateAction.php -------------------------------------------------------------------------------- /src/Module/Client/Update/Repository/ClientDeletedDateFinderRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Client/Update/Repository/ClientDeletedDateFinderRepository.php -------------------------------------------------------------------------------- /src/Module/Client/Update/Repository/ClientUpdaterRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Client/Update/Repository/ClientUpdaterRepository.php -------------------------------------------------------------------------------- /src/Module/Client/Update/Service/ClientUpdateAuthorizationChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Client/Update/Service/ClientUpdateAuthorizationChecker.php -------------------------------------------------------------------------------- /src/Module/Client/Update/Service/ClientUpdater.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Client/Update/Service/ClientUpdater.php -------------------------------------------------------------------------------- /src/Module/Client/Validation/Repository/ClientStatusValidatorRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Client/Validation/Repository/ClientStatusValidatorRepository.php -------------------------------------------------------------------------------- /src/Module/Client/Validation/Service/ClientValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Client/Validation/Service/ClientValidator.php -------------------------------------------------------------------------------- /src/Module/Dashboard/DisplayPage/Action/DashboardPageAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Dashboard/DisplayPage/Action/DashboardPageAction.php -------------------------------------------------------------------------------- /src/Module/Dashboard/DisplayPage/Data/DashboardData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Dashboard/DisplayPage/Data/DashboardData.php -------------------------------------------------------------------------------- /src/Module/Dashboard/DisplayPage/Service/DashboardPanelProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Dashboard/DisplayPage/Service/DashboardPanelProvider.php -------------------------------------------------------------------------------- /src/Module/Dashboard/DisplayPage/Service/UserFilterChipProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Dashboard/DisplayPage/Service/UserFilterChipProvider.php -------------------------------------------------------------------------------- /src/Module/Dashboard/TogglePanel/Action/DashboardTogglePanelAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Dashboard/TogglePanel/Action/DashboardTogglePanelAction.php -------------------------------------------------------------------------------- /src/Module/Dashboard/TogglePanel/Service/ActiveDashboardPanelChanger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Dashboard/TogglePanel/Service/ActiveDashboardPanelChanger.php -------------------------------------------------------------------------------- /src/Module/FilterSetting/Enum/FilterModule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/FilterSetting/Enum/FilterModule.php -------------------------------------------------------------------------------- /src/Module/FilterSetting/Find/Data/FilterData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/FilterSetting/Find/Data/FilterData.php -------------------------------------------------------------------------------- /src/Module/FilterSetting/Find/Repository/UserFilterFinderRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/FilterSetting/Find/Repository/UserFilterFinderRepository.php -------------------------------------------------------------------------------- /src/Module/FilterSetting/Find/Service/FilterSettingFinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/FilterSetting/Find/Service/FilterSettingFinder.php -------------------------------------------------------------------------------- /src/Module/FilterSetting/Save/Repository/UserFilterSaverRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/FilterSetting/Save/Repository/UserFilterSaverRepository.php -------------------------------------------------------------------------------- /src/Module/FilterSetting/Save/Service/FilterSettingSaver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/FilterSetting/Save/Service/FilterSettingSaver.php -------------------------------------------------------------------------------- /src/Module/FormOption/SexOption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/FormOption/SexOption.php -------------------------------------------------------------------------------- /src/Module/Localization/Action/TranslateAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Localization/Action/TranslateAction.php -------------------------------------------------------------------------------- /src/Module/Mail/Repository/EmailLoggerRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Mail/Repository/EmailLoggerRepository.php -------------------------------------------------------------------------------- /src/Module/Mail/Service/Mailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Mail/Service/Mailer.php -------------------------------------------------------------------------------- /src/Module/Note/Authorization/Service/NotePrivilegeDeterminer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Note/Authorization/Service/NotePrivilegeDeterminer.php -------------------------------------------------------------------------------- /src/Module/Note/Create/Action/NoteCreateAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Note/Create/Action/NoteCreateAction.php -------------------------------------------------------------------------------- /src/Module/Note/Create/Repository/NoteCreatorRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Note/Create/Repository/NoteCreatorRepository.php -------------------------------------------------------------------------------- /src/Module/Note/Create/Service/NoteCreateAuthorizationChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Note/Create/Service/NoteCreateAuthorizationChecker.php -------------------------------------------------------------------------------- /src/Module/Note/Create/Service/NoteCreator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Note/Create/Service/NoteCreator.php -------------------------------------------------------------------------------- /src/Module/Note/Data/NoteData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Note/Data/NoteData.php -------------------------------------------------------------------------------- /src/Module/Note/Delete/Action/NoteDeleteAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Note/Delete/Action/NoteDeleteAction.php -------------------------------------------------------------------------------- /src/Module/Note/Delete/Repository/NoteDeleterRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Note/Delete/Repository/NoteDeleterRepository.php -------------------------------------------------------------------------------- /src/Module/Note/Delete/Service/NoteDeleteAuthorizationChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Note/Delete/Service/NoteDeleteAuthorizationChecker.php -------------------------------------------------------------------------------- /src/Module/Note/Delete/Service/NoteDeleter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Note/Delete/Service/NoteDeleter.php -------------------------------------------------------------------------------- /src/Module/Note/Find/Repository/NoteFinderRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Note/Find/Repository/NoteFinderRepository.php -------------------------------------------------------------------------------- /src/Module/Note/Find/Service/NoteFinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Note/Find/Service/NoteFinder.php -------------------------------------------------------------------------------- /src/Module/Note/List/Action/NoteFetchListAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Note/List/Action/NoteFetchListAction.php -------------------------------------------------------------------------------- /src/Module/Note/List/Data/NoteResultData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Note/List/Data/NoteResultData.php -------------------------------------------------------------------------------- /src/Module/Note/List/Domain/Exception/InvalidNoteFilterException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Note/List/Domain/Exception/InvalidNoteFilterException.php -------------------------------------------------------------------------------- /src/Module/Note/List/Domain/Service/NoteFilterFinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Note/List/Domain/Service/NoteFilterFinder.php -------------------------------------------------------------------------------- /src/Module/Note/List/Domain/Service/NoteListFinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Note/List/Domain/Service/NoteListFinder.php -------------------------------------------------------------------------------- /src/Module/Note/List/Repository/NoteListClientFinderRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Note/List/Repository/NoteListClientFinderRepository.php -------------------------------------------------------------------------------- /src/Module/Note/List/Repository/NoteListFinderRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Note/List/Repository/NoteListFinderRepository.php -------------------------------------------------------------------------------- /src/Module/Note/Read/Action/NoteReadPageAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Note/Read/Action/NoteReadPageAction.php -------------------------------------------------------------------------------- /src/Module/Note/Read/Service/NoteReadAuthorizationChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Note/Read/Service/NoteReadAuthorizationChecker.php -------------------------------------------------------------------------------- /src/Module/Note/Update/Action/NoteUpdateAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Note/Update/Action/NoteUpdateAction.php -------------------------------------------------------------------------------- /src/Module/Note/Update/Repository/NoteUpdaterRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Note/Update/Repository/NoteUpdaterRepository.php -------------------------------------------------------------------------------- /src/Module/Note/Update/Service/NoteUpdateAuthorizationChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Note/Update/Service/NoteUpdateAuthorizationChecker.php -------------------------------------------------------------------------------- /src/Module/Note/Update/Service/NoteUpdater.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Note/Update/Service/NoteUpdater.php -------------------------------------------------------------------------------- /src/Module/Note/Validation/Repository/NoteValidatorRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Note/Validation/Repository/NoteValidatorRepository.php -------------------------------------------------------------------------------- /src/Module/Note/Validation/Service/NoteValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Note/Validation/Service/NoteValidator.php -------------------------------------------------------------------------------- /src/Module/Security/Captcha/Service/SecurityCaptchaVerifier.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Security/Captcha/Service/SecurityCaptchaVerifier.php -------------------------------------------------------------------------------- /src/Module/Security/Email/Repository/EmailLogFinderRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Security/Email/Repository/EmailLogFinderRepository.php -------------------------------------------------------------------------------- /src/Module/Security/Email/Service/EmailRequestFinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Security/Email/Service/EmailRequestFinder.php -------------------------------------------------------------------------------- /src/Module/Security/Email/Service/SecurityEmailChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Security/Email/Service/SecurityEmailChecker.php -------------------------------------------------------------------------------- /src/Module/Security/Enum/SecurityType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Security/Enum/SecurityType.php -------------------------------------------------------------------------------- /src/Module/Security/Exception/SecurityException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Security/Exception/SecurityException.php -------------------------------------------------------------------------------- /src/Module/Security/Login/Repository/LoginLogFinderRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Security/Login/Repository/LoginLogFinderRepository.php -------------------------------------------------------------------------------- /src/Module/Security/Login/Service/LoginRequestFinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Security/Login/Service/LoginRequestFinder.php -------------------------------------------------------------------------------- /src/Module/Security/Login/Service/SecurityLoginChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Security/Login/Service/SecurityLoginChecker.php -------------------------------------------------------------------------------- /src/Module/User/AssignRole/Service/UserAssignRoleAuthorizationChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/User/AssignRole/Service/UserAssignRoleAuthorizationChecker.php -------------------------------------------------------------------------------- /src/Module/User/Authorization/Service/UserPrivilegeDeterminer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/User/Authorization/Service/UserPrivilegeDeterminer.php -------------------------------------------------------------------------------- /src/Module/User/Create/Action/UserCreateAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/User/Create/Action/UserCreateAction.php -------------------------------------------------------------------------------- /src/Module/User/Create/Repository/UserCreatorRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/User/Create/Repository/UserCreatorRepository.php -------------------------------------------------------------------------------- /src/Module/User/Create/Service/UserCreateAuthorizationChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/User/Create/Service/UserCreateAuthorizationChecker.php -------------------------------------------------------------------------------- /src/Module/User/Create/Service/UserCreator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/User/Create/Service/UserCreator.php -------------------------------------------------------------------------------- /src/Module/User/Data/UserData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/User/Data/UserData.php -------------------------------------------------------------------------------- /src/Module/User/Data/UserResultData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/User/Data/UserResultData.php -------------------------------------------------------------------------------- /src/Module/User/Data/UserRoleData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/User/Data/UserRoleData.php -------------------------------------------------------------------------------- /src/Module/User/Delete/Action/UserDeleteAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/User/Delete/Action/UserDeleteAction.php -------------------------------------------------------------------------------- /src/Module/User/Delete/Repository/UserDeleterRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/User/Delete/Repository/UserDeleterRepository.php -------------------------------------------------------------------------------- /src/Module/User/Delete/Service/UserDeleteAuthorizationChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/User/Delete/Service/UserDeleteAuthorizationChecker.php -------------------------------------------------------------------------------- /src/Module/User/Delete/Service/UserDeleter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/User/Delete/Service/UserDeleter.php -------------------------------------------------------------------------------- /src/Module/User/Enum/UserActivity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/User/Enum/UserActivity.php -------------------------------------------------------------------------------- /src/Module/User/Enum/UserLang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/User/Enum/UserLang.php -------------------------------------------------------------------------------- /src/Module/User/Enum/UserRole.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/User/Enum/UserRole.php -------------------------------------------------------------------------------- /src/Module/User/Enum/UserStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/User/Enum/UserStatus.php -------------------------------------------------------------------------------- /src/Module/User/Enum/UserTheme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/User/Enum/UserTheme.php -------------------------------------------------------------------------------- /src/Module/User/Find/Repository/UserFinderRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/User/Find/Repository/UserFinderRepository.php -------------------------------------------------------------------------------- /src/Module/User/Find/Service/UserFinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/User/Find/Service/UserFinder.php -------------------------------------------------------------------------------- /src/Module/User/FindAbbreviatedNameList/Service/AbbreviatedUserNameListFinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/User/FindAbbreviatedNameList/Service/AbbreviatedUserNameListFinder.php -------------------------------------------------------------------------------- /src/Module/User/FindAbbreviatedNameList/Service/UserNameAbbreviator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/User/FindAbbreviatedNameList/Service/UserNameAbbreviator.php -------------------------------------------------------------------------------- /src/Module/User/FindDropdownOptions/Action/UserCreateDropdownOptionsFetchAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/User/FindDropdownOptions/Action/UserCreateDropdownOptionsFetchAction.php -------------------------------------------------------------------------------- /src/Module/User/FindDropdownOptions/Repository/UserDropdownOptionsRoleFinderRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/User/FindDropdownOptions/Repository/UserDropdownOptionsRoleFinderRepository.php -------------------------------------------------------------------------------- /src/Module/User/FindDropdownOptions/Service/AuthorizedUserRoleFilterer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/User/FindDropdownOptions/Service/AuthorizedUserRoleFilterer.php -------------------------------------------------------------------------------- /src/Module/User/FindDropdownOptions/Service/UserDropdownOptionFinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/User/FindDropdownOptions/Service/UserDropdownOptionFinder.php -------------------------------------------------------------------------------- /src/Module/User/FindList/Repository/UserListFinderRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/User/FindList/Repository/UserListFinderRepository.php -------------------------------------------------------------------------------- /src/Module/User/ListPage/Action/UserFetchListAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/User/ListPage/Action/UserFetchListAction.php -------------------------------------------------------------------------------- /src/Module/User/ListPage/Action/UserListPageAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/User/ListPage/Action/UserListPageAction.php -------------------------------------------------------------------------------- /src/Module/User/ListPage/Service/UserListPageFinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/User/ListPage/Service/UserListPageFinder.php -------------------------------------------------------------------------------- /src/Module/User/Read/Action/UserReadPageAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/User/Read/Action/UserReadPageAction.php -------------------------------------------------------------------------------- /src/Module/User/Read/Service/UserReadAuthorizationChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/User/Read/Service/UserReadAuthorizationChecker.php -------------------------------------------------------------------------------- /src/Module/User/Read/Service/UserReadFinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/User/Read/Service/UserReadFinder.php -------------------------------------------------------------------------------- /src/Module/User/Update/Action/UserUpdateAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/User/Update/Action/UserUpdateAction.php -------------------------------------------------------------------------------- /src/Module/User/Update/Repository/UserUpdateAuthorizationRoleFinderRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/User/Update/Repository/UserUpdateAuthorizationRoleFinderRepository.php -------------------------------------------------------------------------------- /src/Module/User/Update/Repository/UserUpdaterRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/User/Update/Repository/UserUpdaterRepository.php -------------------------------------------------------------------------------- /src/Module/User/Update/Service/UserUpdateAuthorizationChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/User/Update/Service/UserUpdateAuthorizationChecker.php -------------------------------------------------------------------------------- /src/Module/User/Update/Service/UserUpdater.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/User/Update/Service/UserUpdater.php -------------------------------------------------------------------------------- /src/Module/User/Validation/Repository/UserExistenceCheckerRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/User/Validation/Repository/UserExistenceCheckerRepository.php -------------------------------------------------------------------------------- /src/Module/User/Validation/Repository/ValidationUserRoleFinderRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/User/Validation/Repository/ValidationUserRoleFinderRepository.php -------------------------------------------------------------------------------- /src/Module/User/Validation/Service/UserValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/User/Validation/Service/UserValidator.php -------------------------------------------------------------------------------- /src/Module/UserActivity/Data/UserActivityData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/UserActivity/Data/UserActivityData.php -------------------------------------------------------------------------------- /src/Module/UserActivity/Delete/Repository/UserActivityDeleterRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/UserActivity/Delete/Repository/UserActivityDeleterRepository.php -------------------------------------------------------------------------------- /src/Module/UserActivity/Delete/Service/UserActivityDeleter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/UserActivity/Delete/Service/UserActivityDeleter.php -------------------------------------------------------------------------------- /src/Module/UserActivity/List/Action/UserActivityFetchListAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/UserActivity/List/Action/UserActivityFetchListAction.php -------------------------------------------------------------------------------- /src/Module/UserActivity/List/Repository/UserActivityListFinderRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/UserActivity/List/Repository/UserActivityListFinderRepository.php -------------------------------------------------------------------------------- /src/Module/UserActivity/List/Service/UserActivityListFinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/UserActivity/List/Service/UserActivityListFinder.php -------------------------------------------------------------------------------- /src/Module/UserActivity/Log/Repository/UserActivityLoggerRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/UserActivity/Log/Repository/UserActivityLoggerRepository.php -------------------------------------------------------------------------------- /src/Module/UserActivity/Log/Service/UserActivityLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/UserActivity/Log/Service/UserActivityLogger.php -------------------------------------------------------------------------------- /src/Module/UserActivity/ReadAuthorization/Service/UserActivityReadAuthorizationChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/UserActivity/ReadAuthorization/Service/UserActivityReadAuthorizationChecker.php -------------------------------------------------------------------------------- /src/Module/UserRole/Find/Repository/UserRoleFinderRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/UserRole/Find/Repository/UserRoleFinderRepository.php -------------------------------------------------------------------------------- /src/Module/Validation/Exception/ValidationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/Validation/Exception/ValidationException.php -------------------------------------------------------------------------------- /src/Module/module-architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/src/Module/module-architecture.md -------------------------------------------------------------------------------- /templates/authentication/email/de/login-but-locked.email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/templates/authentication/email/de/login-but-locked.email.php -------------------------------------------------------------------------------- /templates/authentication/email/de/login-but-suspended.email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/templates/authentication/email/de/login-but-suspended.email.php -------------------------------------------------------------------------------- /templates/authentication/email/de/login-but-unverified.email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/templates/authentication/email/de/login-but-unverified.email.php -------------------------------------------------------------------------------- /templates/authentication/email/de/new-account.email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/templates/authentication/email/de/new-account.email.php -------------------------------------------------------------------------------- /templates/authentication/email/de/password-reset.email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/templates/authentication/email/de/password-reset.email.php -------------------------------------------------------------------------------- /templates/authentication/email/fr/login-but-locked.email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/templates/authentication/email/fr/login-but-locked.email.php -------------------------------------------------------------------------------- /templates/authentication/email/fr/login-but-suspended.email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/templates/authentication/email/fr/login-but-suspended.email.php -------------------------------------------------------------------------------- /templates/authentication/email/fr/login-but-unverified.email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/templates/authentication/email/fr/login-but-unverified.email.php -------------------------------------------------------------------------------- /templates/authentication/email/fr/new-account.email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/templates/authentication/email/fr/new-account.email.php -------------------------------------------------------------------------------- /templates/authentication/email/fr/password-reset.email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/templates/authentication/email/fr/password-reset.email.php -------------------------------------------------------------------------------- /templates/authentication/email/login-but-locked.email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/templates/authentication/email/login-but-locked.email.php -------------------------------------------------------------------------------- /templates/authentication/email/login-but-suspended.email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/templates/authentication/email/login-but-suspended.email.php -------------------------------------------------------------------------------- /templates/authentication/email/login-but-unverified.email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/templates/authentication/email/login-but-unverified.email.php -------------------------------------------------------------------------------- /templates/authentication/email/new-account.email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/templates/authentication/email/new-account.email.php -------------------------------------------------------------------------------- /templates/authentication/email/password-reset.email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/templates/authentication/email/password-reset.email.php -------------------------------------------------------------------------------- /templates/authentication/login.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/templates/authentication/login.html.php -------------------------------------------------------------------------------- /templates/authentication/reset-password.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/templates/authentication/reset-password.html.php -------------------------------------------------------------------------------- /templates/client/client-read.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/templates/client/client-read.html.php -------------------------------------------------------------------------------- /templates/client/clients-list.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/templates/client/clients-list.html.php -------------------------------------------------------------------------------- /templates/dashboard/dashboard.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/templates/dashboard/dashboard.html.php -------------------------------------------------------------------------------- /templates/error/error-page.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/templates/error/error-page.html.php -------------------------------------------------------------------------------- /templates/layout/assets.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/templates/layout/assets.html.php -------------------------------------------------------------------------------- /templates/layout/flash-messages.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/templates/layout/flash-messages.html.php -------------------------------------------------------------------------------- /templates/layout/footer.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/templates/layout/footer.html.php -------------------------------------------------------------------------------- /templates/layout/layout.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/templates/layout/layout.html.php -------------------------------------------------------------------------------- /templates/layout/navbar.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/templates/layout/navbar.html.php -------------------------------------------------------------------------------- /templates/layout/request-throttle.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/templates/layout/request-throttle.html.php -------------------------------------------------------------------------------- /templates/user/user-list.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/templates/user/user-list.html.php -------------------------------------------------------------------------------- /templates/user/user-read.html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/templates/user/user-read.html.php -------------------------------------------------------------------------------- /tests/Fixture/ClientFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/tests/Fixture/ClientFixture.php -------------------------------------------------------------------------------- /tests/Fixture/ClientStatusFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/tests/Fixture/ClientStatusFixture.php -------------------------------------------------------------------------------- /tests/Fixture/NoteFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/tests/Fixture/NoteFixture.php -------------------------------------------------------------------------------- /tests/Fixture/UserActivityFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/tests/Fixture/UserActivityFixture.php -------------------------------------------------------------------------------- /tests/Fixture/UserFilterSettingFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/tests/Fixture/UserFilterSettingFixture.php -------------------------------------------------------------------------------- /tests/Fixture/UserFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/tests/Fixture/UserFixture.php -------------------------------------------------------------------------------- /tests/Fixture/UserRoleFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/tests/Fixture/UserRoleFixture.php -------------------------------------------------------------------------------- /tests/TestCase/Authentication/AccountUnlock/AccountUnlockActionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/tests/TestCase/Authentication/AccountUnlock/AccountUnlockActionTest.php -------------------------------------------------------------------------------- /tests/TestCase/Authentication/Login/LoginPageActionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/tests/TestCase/Authentication/Login/LoginPageActionTest.php -------------------------------------------------------------------------------- /tests/TestCase/Authentication/Login/LoginProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/tests/TestCase/Authentication/Login/LoginProvider.php -------------------------------------------------------------------------------- /tests/TestCase/Authentication/Login/LoginSubmitActionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/tests/TestCase/Authentication/Login/LoginSubmitActionTest.php -------------------------------------------------------------------------------- /tests/TestCase/Authentication/Logout/LogoutActionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/tests/TestCase/Authentication/Logout/LogoutActionTest.php -------------------------------------------------------------------------------- /tests/TestCase/Authentication/PasswordChange/PasswordChangeSubmitActionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/tests/TestCase/Authentication/PasswordChange/PasswordChangeSubmitActionTest.php -------------------------------------------------------------------------------- /tests/TestCase/Authentication/PasswordChange/UserChangePasswordProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/tests/TestCase/Authentication/PasswordChange/UserChangePasswordProvider.php -------------------------------------------------------------------------------- /tests/TestCase/Authentication/PasswordReset/PasswordForgottenEmailSubmitActionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/tests/TestCase/Authentication/PasswordReset/PasswordForgottenEmailSubmitActionTest.php -------------------------------------------------------------------------------- /tests/TestCase/Authentication/PasswordReset/PasswordResetSubmitActionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/tests/TestCase/Authentication/PasswordReset/PasswordResetSubmitActionTest.php -------------------------------------------------------------------------------- /tests/TestCase/Authentication/Provider/UserVerificationProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/tests/TestCase/Authentication/Provider/UserVerificationProvider.php -------------------------------------------------------------------------------- /tests/TestCase/Authentication/Register/RegisterVerifyActionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/tests/TestCase/Authentication/Register/RegisterVerifyActionTest.php -------------------------------------------------------------------------------- /tests/TestCase/Client/Create/ClientCreateActionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/tests/TestCase/Client/Create/ClientCreateActionTest.php -------------------------------------------------------------------------------- /tests/TestCase/Client/Create/ClientCreateDropdownOptionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/tests/TestCase/Client/Create/ClientCreateDropdownOptionsTest.php -------------------------------------------------------------------------------- /tests/TestCase/Client/Create/ClientCreateProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/tests/TestCase/Client/Create/ClientCreateProvider.php -------------------------------------------------------------------------------- /tests/TestCase/Client/CreateApi/ApiClientCreateActionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/tests/TestCase/Client/CreateApi/ApiClientCreateActionTest.php -------------------------------------------------------------------------------- /tests/TestCase/Client/CreateApi/ApiClientCreateProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/tests/TestCase/Client/CreateApi/ApiClientCreateProvider.php -------------------------------------------------------------------------------- /tests/TestCase/Client/Delete/ClientDeleteActionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/tests/TestCase/Client/Delete/ClientDeleteActionTest.php -------------------------------------------------------------------------------- /tests/TestCase/Client/Delete/ClientDeleteProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/tests/TestCase/Client/Delete/ClientDeleteProvider.php -------------------------------------------------------------------------------- /tests/TestCase/Client/List/ClientListActionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/tests/TestCase/Client/List/ClientListActionTest.php -------------------------------------------------------------------------------- /tests/TestCase/Client/List/ClientListProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/tests/TestCase/Client/List/ClientListProvider.php -------------------------------------------------------------------------------- /tests/TestCase/Client/Read/ClientReadPageActionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/tests/TestCase/Client/Read/ClientReadPageActionTest.php -------------------------------------------------------------------------------- /tests/TestCase/Client/Read/ClientReadProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/tests/TestCase/Client/Read/ClientReadProvider.php -------------------------------------------------------------------------------- /tests/TestCase/Client/Update/ClientUpdateActionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/tests/TestCase/Client/Update/ClientUpdateActionTest.php -------------------------------------------------------------------------------- /tests/TestCase/Client/Update/ClientUpdateProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/tests/TestCase/Client/Update/ClientUpdateProvider.php -------------------------------------------------------------------------------- /tests/TestCase/Dashboard/DashboardPageActionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/tests/TestCase/Dashboard/DashboardPageActionTest.php -------------------------------------------------------------------------------- /tests/TestCase/Dashboard/DashboardTogglePanelActionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/tests/TestCase/Dashboard/DashboardTogglePanelActionTest.php -------------------------------------------------------------------------------- /tests/TestCase/Note/Create/NoteCreateActionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/tests/TestCase/Note/Create/NoteCreateActionTest.php -------------------------------------------------------------------------------- /tests/TestCase/Note/Create/NoteCreateProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/tests/TestCase/Note/Create/NoteCreateProvider.php -------------------------------------------------------------------------------- /tests/TestCase/Note/Delete/NoteDeleteActionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/tests/TestCase/Note/Delete/NoteDeleteActionTest.php -------------------------------------------------------------------------------- /tests/TestCase/Note/List/NoteListActionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/tests/TestCase/Note/List/NoteListActionTest.php -------------------------------------------------------------------------------- /tests/TestCase/Note/List/NoteListProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/tests/TestCase/Note/List/NoteListProvider.php -------------------------------------------------------------------------------- /tests/TestCase/Note/Provider/NoteCreateUpdateDeleteProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/tests/TestCase/Note/Provider/NoteCreateUpdateDeleteProvider.php -------------------------------------------------------------------------------- /tests/TestCase/Note/Read/NoteReadPageActionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/tests/TestCase/Note/Read/NoteReadPageActionTest.php -------------------------------------------------------------------------------- /tests/TestCase/Note/Update/NoteUpdateActionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/tests/TestCase/Note/Update/NoteUpdateActionTest.php -------------------------------------------------------------------------------- /tests/TestCase/Note/Update/NoteUpdateProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/tests/TestCase/Note/Update/NoteUpdateProvider.php -------------------------------------------------------------------------------- /tests/TestCase/Security/Integration/LoginSecurityTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/tests/TestCase/Security/Integration/LoginSecurityTest.php -------------------------------------------------------------------------------- /tests/TestCase/Security/Provider/EmailRequestProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/tests/TestCase/Security/Provider/EmailRequestProvider.php -------------------------------------------------------------------------------- /tests/TestCase/Security/Provider/LoginRequestProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/tests/TestCase/Security/Provider/LoginRequestProvider.php -------------------------------------------------------------------------------- /tests/TestCase/Security/Unit/SecurityEmailCheckerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/tests/TestCase/Security/Unit/SecurityEmailCheckerTest.php -------------------------------------------------------------------------------- /tests/TestCase/Security/Unit/SecurityLoginCheckerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/tests/TestCase/Security/Unit/SecurityLoginCheckerTest.php -------------------------------------------------------------------------------- /tests/TestCase/Translation/TranslateActionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/tests/TestCase/Translation/TranslateActionTest.php -------------------------------------------------------------------------------- /tests/TestCase/User/Create/UserCreateActionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/tests/TestCase/User/Create/UserCreateActionTest.php -------------------------------------------------------------------------------- /tests/TestCase/User/Create/UserCreateDropdownOptionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/tests/TestCase/User/Create/UserCreateDropdownOptionsTest.php -------------------------------------------------------------------------------- /tests/TestCase/User/Create/UserCreateProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/tests/TestCase/User/Create/UserCreateProvider.php -------------------------------------------------------------------------------- /tests/TestCase/User/Delete/UserDeleteActionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/tests/TestCase/User/Delete/UserDeleteActionTest.php -------------------------------------------------------------------------------- /tests/TestCase/User/Delete/UserDeleteProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/tests/TestCase/User/Delete/UserDeleteProvider.php -------------------------------------------------------------------------------- /tests/TestCase/User/List/UserListActionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/tests/TestCase/User/List/UserListActionTest.php -------------------------------------------------------------------------------- /tests/TestCase/User/List/UserListPageActionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/tests/TestCase/User/List/UserListPageActionTest.php -------------------------------------------------------------------------------- /tests/TestCase/User/List/UserListProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/tests/TestCase/User/List/UserListProvider.php -------------------------------------------------------------------------------- /tests/TestCase/User/Read/UserReadPageActionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/tests/TestCase/User/Read/UserReadPageActionTest.php -------------------------------------------------------------------------------- /tests/TestCase/User/Read/UserReadProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/tests/TestCase/User/Read/UserReadProvider.php -------------------------------------------------------------------------------- /tests/TestCase/User/Update/UserUpdateActionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/tests/TestCase/User/Update/UserUpdateActionTest.php -------------------------------------------------------------------------------- /tests/TestCase/User/Update/UserUpdateProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/tests/TestCase/User/Update/UserUpdateProvider.php -------------------------------------------------------------------------------- /tests/TestCase/UserActivity/UserFetchActivityActionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/tests/TestCase/UserActivity/UserFetchActivityActionTest.php -------------------------------------------------------------------------------- /tests/Trait/AppTestTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/tests/Trait/AppTestTrait.php -------------------------------------------------------------------------------- /tests/Trait/AuthorizationTestTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/tests/Trait/AuthorizationTestTrait.php -------------------------------------------------------------------------------- /tests/docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelgfeller/slim-example-project/HEAD/tests/docs.md --------------------------------------------------------------------------------