vsi |-- api | |-- admin | | `-- get_logs.php | |-- beneficiary | |-- finance | |-- invite | | |-- list.php | | `-- resend.php | |-- loan | | `-- create.php | |-- training | `-- user | |-- activate.php | |-- change_role.php | |-- create.php | |-- delete_user.php | |-- get_all.php | |-- get_role.php | |-- reset_confirm.php | |-- reset_password.php | |-- reset_request.php | |-- setup.php | |-- store_user.php | `-- update_user.php |-- auth | |-- activate.php | |-- login.php | |-- verify.php\ | `-- verify_token.php |-- composer.json |-- composer.lock |-- config | |-- db.php | |-- jwt_secret.php | `-- load_env.php |-- env |-- helpers | `-- response.php |-- logs | `-- audit.log |-- public | |-- activate.html | |-- activate.php | |-- admin | | |-- audit.html | | |-- create_user.html | | |-- dashboard.html | | |-- invites.html | | |-- reset_password.html | | |-- users | | | `-- create.php | | `-- users.html | |-- assets | | |-- admin.css | | |-- images | | | |-- Thidasp-logo.png | | | |-- org-logo.png | | | `-- program-logo.png | | `-- js | | `-- login.js | |-- dashboard.html | |-- footer.html | |-- header.html | |-- index.html | |-- login.php | |-- reset_password.html | `-- unauthorized.html\ |-- templates | `-- invite_template.html\ |-- tmp | |-- error.log | `-- i_error.log |-- uploads |-- utils | |-- JwtHandler.php | |-- Logger.php | |-- Mailer.php | `-- TokenGenerator.php `-- vendor |-- autoload.php |-- composer | |-- ClassLoader.php | |-- InstalledVersions.php | |-- LICENSE | |-- autoload_classmap.php | |-- autoload_files.php | |-- autoload_namespaces.php | |-- autoload_psr4.php | |-- autoload_real.php | |-- autoload_static.php | |-- installed.json | |-- installed.php | `-- platform_check.php |-- firebase | `-- php-jwt | |-- CHANGELOG.md | |-- LICENSE | |-- README.md | |-- composer.json | `-- src | |-- BeforeValidException.php | |-- CachedKeySet.php | |-- ExpiredException.php | |-- JWK.php | |-- JWT.php | |-- JWTExceptionWithPayloadInterface.php | |-- Key.php | `-- SignatureInvalidException.php |-- graham-campbell | `-- result-type | |-- LICENSE | |-- composer.json | `-- src | |-- Error.php | |-- Result.php | `-- Success.php |-- phpmailer | `-- phpmailer | |-- COMMITMENT | |-- LICENSE | |-- README.md | |-- SECURITY.md | |-- SMTPUTF8.md | |-- VERSION | |-- composer.json | |-- get_oauth_token.php | |-- language | | |-- phpmailer.lang-af.php | | |-- phpmailer.lang-ar.php | | |-- phpmailer.lang-as.php | | |-- phpmailer.lang-az.php | | |-- phpmailer.lang-ba.php | | |-- phpmailer.lang-be.php | | |-- phpmailer.lang-bg.php | | |-- phpmailer.lang-bn.php | | |-- phpmailer.lang-ca.php | | |-- phpmailer.lang-cs.php | | |-- phpmailer.lang-da.php | | |-- phpmailer.lang-de.php | | |-- phpmailer.lang-el.php | | |-- phpmailer.lang-eo.php | | |-- phpmailer.lang-es.php | | |-- phpmailer.lang-et.php | | |-- phpmailer.lang-fa.php | | |-- phpmailer.lang-fi.php | | |-- phpmailer.lang-fo.php | | |-- phpmailer.lang-fr.php | | |-- phpmailer.lang-gl.php | | |-- phpmailer.lang-he.php | | |-- phpmailer.lang-hi.php | | |-- phpmailer.lang-hr.php | | |-- phpmailer.lang-hu.php | | |-- phpmailer.lang-hy.php | | |-- phpmailer.lang-id.php | | |-- phpmailer.lang-it.php | | |-- phpmailer.lang-ja.php | | |-- phpmailer.lang-ka.php | | |-- phpmailer.lang-ko.php | | |-- phpmailer.lang-ku.php | | |-- phpmailer.lang-lt.php | | |-- phpmailer.lang-lv.php | | |-- phpmailer.lang-mg.php | | |-- phpmailer.lang-mn.php | | |-- phpmailer.lang-ms.php | | |-- phpmailer.lang-nb.php | | |-- phpmailer.lang-nl.php | | |-- phpmailer.lang-pl.php | | |-- phpmailer.lang-pt.php | | |-- phpmailer.lang-pt_br.php | | |-- phpmailer.lang-ro.php | | |-- phpmailer.lang-ru.php | | |-- phpmailer.lang-si.php | | |-- phpmailer.lang-sk.php | | |-- phpmailer.lang-sl.php | | |-- phpmailer.lang-sr.php | | |-- phpmailer.lang-sr_latn.php | | |-- phpmailer.lang-sv.php | | |-- phpmailer.lang-tl.php | | |-- phpmailer.lang-tr.php | | |-- phpmailer.lang-uk.php | | |-- phpmailer.lang-ur.php | | |-- phpmailer.lang-vi.php | | |-- phpmailer.lang-zh.php | | `-- phpmailer.lang-zh_cn.php | `-- src | |-- DSNConfigurator.php | |-- Exception.php | |-- OAuth.php | |-- OAuthTokenProvider.php | |-- PHPMailer.php | |-- POP3.php | `-- SMTP.php |-- phpoption | `-- phpoption | |-- LICENSE | |-- composer.json | `-- src | `-- PhpOption | |-- LazyOption.php | |-- None.php | |-- Option.php | `-- Some.php |-- symfony | |-- polyfill-ctype | | |-- Ctype.php | | |-- LICENSE | | |-- README.md | | |-- bootstrap.php | | |-- bootstrap80.php | | `-- composer.json | |-- polyfill-mbstring | | |-- LICENSE | | |-- Mbstring.php | | |-- README.md | | |-- Resources | | | `-- unidata | | | |-- caseFolding.php | | | |-- lowerCase.php | | | |-- titleCaseRegexp.php | | | `-- upperCase.php | | |-- bootstrap.php | | |-- bootstrap80.php | | `-- composer.json | `-- polyfill-php80 | |-- LICENSE | |-- Php80.php | |-- PhpToken.php | |-- README.md | |-- Resources | | `-- stubs | | |-- Attribute.php | | |-- PhpToken.php | | |-- Stringable.php | | |-- UnhandledMatchError.php | | `-- ValueError.php | |-- bootstrap.php | `-- composer.json `-- vlucas `-- phpdotenv |-- LICENSE |-- composer.json `-- src |-- Dotenv.php |-- Exception | |-- ExceptionInterface.php | |-- InvalidEncodingException.php | |-- InvalidFileException.php | |-- InvalidPathException.php | `-- ValidationException.php |-- Loader | |-- Loader.php | |-- LoaderInterface.php | `-- Resolver.php |-- Parser | |-- Entry.php | |-- EntryParser.php | |-- Lexer.php | |-- Lines.php | |-- Parser.php | |-- ParserInterface.php | `-- Value.php |-- Repository | |-- Adapter | | |-- AdapterInterface.php | | |-- ApacheAdapter.php | | |-- ArrayAdapter.php | | |-- EnvConstAdapter.php | | |-- GuardedWriter.php | | |-- ImmutableWriter.php | | |-- MultiReader.php | | |-- MultiWriter.php | | |-- PutenvAdapter.php | | |-- ReaderInterface.php | | |-- ReplacingWriter.php | | |-- ServerConstAdapter.php | | `-- WriterInterface.php | |-- AdapterRepository.php | |-- RepositoryBuilder.php | `-- RepositoryInterface.php |-- Store | |-- File | | |-- Paths.php | | `-- Reader.php | |-- FileStore.php | |-- StoreBuilder.php | |-- StoreInterface.php | `-- StringStore.php |-- Util | |-- Regex.php | `-- Str.php `-- Validator.php 59 directories, 233 files