diff --git a/examples/digitalidentity/.env.example b/examples/digitalidentity/.env.example
new file mode 100644
index 00000000..059515cf
--- /dev/null
+++ b/examples/digitalidentity/.env.example
@@ -0,0 +1,15 @@
+# This file is a template for defining the environment variables
+# Set the application config values here
+
+YOTI_SCENARIO_ID=xxxxxxxxxxxxxxxx
+YOTI_SDK_ID=xxxxxxxxxxxxxxxxxxxxx
+
+# Below is the private key (in .pem format) associated with the Yoti Application you created on Yoti Hub
+YOTI_KEY_FILE_PATH=./keys/php-sdk-access-security.pem
+
+# Laravel config:
+APP_NAME=yoti.sdk.profile.demo
+APP_ENV=local
+APP_KEY=
+APP_DEBUG=true
+APP_URL=http://localhost
diff --git a/examples/digitalidentity/.gitignore b/examples/digitalidentity/.gitignore
new file mode 100644
index 00000000..4bb28b97
--- /dev/null
+++ b/examples/digitalidentity/.gitignore
@@ -0,0 +1,16 @@
+/node_modules
+/public/hot
+/public/storage
+/storage/*.key
+/vendor
+.env
+.env.backup
+.phpunit.result.cache
+Homestead.json
+Homestead.yaml
+npm-debug.log
+yarn-error.log
+
+*.pem
+keys/*.pem
+sdk
diff --git a/examples/digitalidentity/README.md b/examples/digitalidentity/README.md
new file mode 100644
index 00000000..5352f69e
--- /dev/null
+++ b/examples/digitalidentity/README.md
@@ -0,0 +1,27 @@
+# Profile Example
+
+## Requirements
+
+This example requires [Docker](https://docs.docker.com/)
+
+## Setup
+
+* Create your application in the [Yoti Hub](https://hub.yoti.com) (this requires having a Yoti account)
+ * Set the application domain of your app to `localhost:4002`
+ * Set the scenario callback URL to `/digitalidentity`
+* Do the steps below inside the [examples/digitaledentity](./) folder
+* Put `your-application-pem-file.pem` file inside the [keys](keys) folder, as Docker requires the `.pem` file to reside within the same location where it's run from.
+* Copy `.env.example` to `.env`
+* Open `.env` file and fill in the environment variables `YOTI_SCENARIO_ID`, `YOTI_SDK_ID`
+ * Set `YOTI_KEY_FILE_PATH` to `./keys/your-application-pem-file.pem`
+* Install dependencies `docker-compose up composer`
+* Run the `docker-compose up --build` command
+* Visit [https://localhost:4002](https://localhost:4002)
+* Run the `docker-compose stop` command to stop the containers.
+
+> To see how to retrieve activity details using the one time use token, refer to the [digitalidentity controller](app/Http/Controllers/IdentityController.php)
+
+## Dynamic Share Example
+* Visit [/dynamic-share](https://localhost:4002/dynamic-share)
+
+> To see how to create a dynamic scenario, refer to the [dynamic share controller](app/Http/Controllers/DynamicShareController.php)
diff --git a/examples/digitalidentity/app/Console/Kernel.php b/examples/digitalidentity/app/Console/Kernel.php
new file mode 100644
index 00000000..69914e99
--- /dev/null
+++ b/examples/digitalidentity/app/Console/Kernel.php
@@ -0,0 +1,41 @@
+command('inspire')->hourly();
+ }
+
+ /**
+ * Register the commands for the application.
+ *
+ * @return void
+ */
+ protected function commands()
+ {
+ $this->load(__DIR__.'/Commands');
+
+ require base_path('routes/console.php');
+ }
+}
diff --git a/examples/digitalidentity/app/Exceptions/Handler.php b/examples/digitalidentity/app/Exceptions/Handler.php
new file mode 100644
index 00000000..59c585dc
--- /dev/null
+++ b/examples/digitalidentity/app/Exceptions/Handler.php
@@ -0,0 +1,55 @@
+withIdentityProfileRequirements((object)[
+ 'trust_framework' => 'UK_TFIDA',
+ 'scheme' => [
+ 'type' => 'DBS',
+ 'objective' => 'BASIC'
+ ]
+ ])
+ ->build();
+
+ $dynamicScenario = (new DynamicScenarioBuilder())
+ ->withCallbackEndpoint("/profile")
+ ->withPolicy($dynamicPolicy)
+ ->withSubject((object)[
+ 'subject_id' => "some_subject_id_string"
+ ])
+ ->build();
+
+ return view('dbs', [
+ 'title' => 'DBS Check Example',
+ 'buttonConfig' => [
+ 'elements' => [
+ [
+ 'domId' => 'yoti-share-button',
+ 'clientSdkId' => config('yoti')['client.sdk.id'],
+ 'shareUrl' => $client->createShareUrl($dynamicScenario)->getShareUrl(),
+ 'button' => [
+ 'label' => 'Use Yoti',
+ 'align' => 'center',
+ 'width' => 'auto',
+ 'verticalAlign' => 'top'
+ ],
+ 'type' => 'modal'
+ ]
+ ]
+ ]
+ ]);
+ }
+}
\ No newline at end of file
diff --git a/examples/digitalidentity/app/Http/Controllers/DynamicShareController.php b/examples/digitalidentity/app/Http/Controllers/DynamicShareController.php
new file mode 100644
index 00000000..f5db2c97
--- /dev/null
+++ b/examples/digitalidentity/app/Http/Controllers/DynamicShareController.php
@@ -0,0 +1,55 @@
+withLatitude(50.8169)
+ ->withLongitude(-0.1367)
+ ->withRadius(100000)
+ ->build();
+
+ $policy = (new DynamicPolicyBuilder())
+ ->withFullName()
+ ->withDocumentDetails()
+ ->withDocumentImages()
+ ->withAgeOver(18)
+ ->withSelfie()
+ ->build();
+
+ $scenario = (new DynamicScenarioBuilder())
+ ->withPolicy($policy)
+ ->withCallbackEndpoint('/profile')
+ ->withExtension($locationConstraint)
+ ->build();
+
+ return view('share', [
+ 'title' => 'Dynamic Share Example',
+ 'buttonConfig' => [
+ 'elements' => [
+ [
+ 'domId' => 'yoti-share-button',
+ 'clientSdkId' => config('yoti')['client.sdk.id'],
+ 'shareUrl' => $client->createShareUrl($scenario)->getShareUrl(),
+ 'button' => [
+ 'label' => 'Use Yoti',
+ 'align' => 'center',
+ 'width' => 'auto',
+ 'verticalAlign' => 'top'
+ ],
+ 'type' => 'modal'
+ ]
+ ]
+ ]
+ ]);
+ }
+}
diff --git a/examples/digitalidentity/app/Http/Controllers/Identity2Controller.php b/examples/digitalidentity/app/Http/Controllers/Identity2Controller.php
new file mode 100644
index 00000000..adbb53d8
--- /dev/null
+++ b/examples/digitalidentity/app/Http/Controllers/Identity2Controller.php
@@ -0,0 +1,78 @@
+withFamilyName()
+ ->withGivenNames()
+ ->withFullName()
+ ->withDateOfBirth()
+ ->withGender()
+ ->withNationality()
+ ->withPhoneNumber()
+ ->withSelfie()
+ ->withEmail()
+ ->withDocumentDetails()
+ ->withDocumentImages()
+ ->build();
+
+ $redirectUri = 'https://host/redirect/';
+
+ $shareSessionRequest = (new ShareSessionRequestBuilder())
+ ->withPolicy($policy)
+ ->withRedirectUri($redirectUri)
+ ->build();
+
+ $session = $client->createShareSession($shareSessionRequest);
+
+ $createdQrCode = $client->createShareQrCode($session->getId());
+
+ $fetchedQrCode = $client->fetchShareQrCode($createdQrCode->getId());
+
+ $sessionFetched = $client->fetchShareSession($session->getId());
+
+ return view('identity2', [
+ 'title' => 'Digital Identity Complete Example',
+ // Creating session
+ 'sessionId' => $session->getId(),
+ 'sessionStatus' => $session->getStatus(),
+ 'sessionExpiry' => $session->getExpiry(),
+ // Creating QR code
+ 'createdQrCodeId' => $createdQrCode->getId(),
+ 'createdQrCodeUri' => $createdQrCode->getUri(),
+ // Fetch QR code
+ 'fetchedQrCodeExpiry' => $fetchedQrCode->getExpiry(),
+
+ 'fetchedQrCodeRedirectUri' => $fetchedQrCode->getRedirectUri(),
+ 'fetchedQrCodeSessionId' => $fetchedQrCode->getSession()->getId(),
+ 'fetchedQrCodeSessionStatus' => $fetchedQrCode->getSession()->getStatus(),
+ 'fetchedQrCodeSessionExpiry' => $fetchedQrCode->getSession()->getExpiry(),
+ // Fetch session
+ 'fetchedSessionId' => $sessionFetched->getId(),
+ 'fetchedSessionStatus' => $sessionFetched->getStatus(),
+ 'fetchedSessionExpiry' => $sessionFetched->getExpiry(),
+ 'fetchedSessionCreated' => $sessionFetched->getCreated(),
+ 'fetchedSessionUpdated' => $sessionFetched->getUpdated(),
+ 'sdkId' => $client->id
+
+ ]);
+ } catch (\Throwable $e) {
+ Log::error($e->getTraceAsString());
+ throw new BadRequestHttpException($e->getMessage());
+ }
+ }
+}
diff --git a/examples/digitalidentity/app/Http/Controllers/IdentityController.php b/examples/digitalidentity/app/Http/Controllers/IdentityController.php
new file mode 100644
index 00000000..681cf7a9
--- /dev/null
+++ b/examples/digitalidentity/app/Http/Controllers/IdentityController.php
@@ -0,0 +1,64 @@
+build();
+
+ $redirectUri = 'https://host/redirect/';
+
+ $shareSessionRequest = (new ShareSessionRequestBuilder())
+ ->withPolicy($policy)
+ ->withRedirectUri($redirectUri)
+ ->build();
+
+ $session = $client->createShareSession($shareSessionRequest);
+
+ $createdQrCode = $client->createShareQrCode($session->getId());
+
+ $fetchedQrCode = $client->fetchShareQrCode($createdQrCode->getId());
+
+ $sessionFetched = $client->fetchShareSession($session->getId());
+
+ return view('identity', [
+ 'title' => 'Digital Identity Complete Example',
+ // Creating session
+ 'sessionId' => $session->getId(),
+ 'sessionStatus' => $session->getStatus(),
+ 'sessionExpiry' => $session->getExpiry(),
+ // Creating QR code
+ 'createdQrCodeId' => $createdQrCode->getId(),
+ 'createdQrCodeUri' => $createdQrCode->getUri(),
+ // Fetch QR code
+ 'fetchedQrCodeExpiry' => $fetchedQrCode->getExpiry(),
+
+ 'fetchedQrCodeRedirectUri' => $fetchedQrCode->getRedirectUri(),
+ 'fetchedQrCodeSessionId' => $fetchedQrCode->getSession()->getId(),
+ 'fetchedQrCodeSessionStatus' => $fetchedQrCode->getSession()->getStatus(),
+ 'fetchedQrCodeSessionExpiry' => $fetchedQrCode->getSession()->getExpiry(),
+ // Fetch session
+ 'fetchedSessionId' => $sessionFetched->getId(),
+ 'fetchedSessionStatus' => $sessionFetched->getStatus(),
+ 'fetchedSessionExpiry' => $sessionFetched->getExpiry(),
+ 'fetchedSessionCreated' => $sessionFetched->getCreated(),
+ 'fetchedSessionUpdated' => $sessionFetched->getUpdated(),
+
+ ]);
+ } catch (\Throwable $e) {
+ Log::error($e->getTraceAsString());
+ throw new BadRequestHttpException($e->getMessage());
+ }
+ }
+}
diff --git a/examples/digitalidentity/app/Http/Controllers/ProfileController.php b/examples/digitalidentity/app/Http/Controllers/ProfileController.php
new file mode 100644
index 00000000..34483fe6
--- /dev/null
+++ b/examples/digitalidentity/app/Http/Controllers/ProfileController.php
@@ -0,0 +1,119 @@
+getActivityDetails($request->query('token'));
+ $profile = $activityDetails->getProfile();
+
+ return view('profile', [
+ 'fullName' => $profile->getFullName(),
+ 'selfie' => $profile->getSelfie(),
+ 'profileAttributes' => $this->createAttributesDisplayList($profile),
+ ]);
+ }
+
+ /**
+ * Create attributes display list.
+ *
+ * @param UserProfile $profile
+ *
+ * @return array
+ */
+ private function createAttributesDisplayList(UserProfile $profile): array
+ {
+ $profileAttributes = [];
+ foreach ($profile->getAttributesList() as $attribute) {
+ switch ($attribute->getName()) {
+ case UserProfile::ATTR_SELFIE:
+ case UserProfile::ATTR_FULL_NAME:
+ // Selfie and full name are handled separately.
+ break;
+ case UserProfile::ATTR_GIVEN_NAMES:
+ $profileAttributes[] = $this->createAttributeDisplayItem($attribute, 'Given names', 'yoti-icon-profile');
+ break;
+ case UserProfile::ATTR_FAMILY_NAME:
+ $profileAttributes[] = $this->createAttributeDisplayItem($attribute, 'Family names', 'yoti-icon-profile');
+ break;
+ case UserProfile::ATTR_DATE_OF_BIRTH:
+ $profileAttributes[] = $this->createAttributeDisplayItem($attribute, 'Date of Birth', 'yoti-icon-calendar');
+ break;
+ case UserProfile::ATTR_GENDER:
+ $profileAttributes[] = $this->createAttributeDisplayItem($attribute, 'Gender', 'yoti-icon-gender');
+ break;
+ case UserProfile::ATTR_STRUCTURED_POSTAL_ADDRESS:
+ $profileAttributes[] = $this->createAttributeDisplayItem($attribute, 'Structured Postal Address', 'yoti-icon-address');
+ break;
+ case UserProfile::ATTR_POSTAL_ADDRESS:
+ $profileAttributes[] = $this->createAttributeDisplayItem($attribute, 'Address', 'yoti-icon-address');
+ break;
+ case UserProfile::ATTR_PHONE_NUMBER:
+ $profileAttributes[] = $this->createAttributeDisplayItem($attribute, 'Mobile number', 'yoti-icon-phone');
+ break;
+ case UserProfile::ATTR_NATIONALITY:
+ $profileAttributes[] = $this->createAttributeDisplayItem($attribute, 'Nationality', 'yoti-icon-nationality');
+ break;
+ case UserProfile::ATTR_EMAIL_ADDRESS:
+ $profileAttributes[] = $this->createAttributeDisplayItem($attribute, 'Email address', 'yoti-icon-email');
+ break;
+ case UserProfile::ATTR_DOCUMENT_DETAILS:
+ $profileAttributes[] = $this->createAttributeDisplayItem($attribute, 'Document Details', 'yoti-icon-profile');
+ break;
+ case UserProfile::ATTR_DOCUMENT_IMAGES:
+ $profileAttributes[] = $this->createAttributeDisplayItem($attribute, 'Document Images', 'yoti-icon-profile');
+ break;
+ default:
+ // Skip age verifications (name containing ":").
+ if (strpos($attribute->getName(), ':') === false) {
+ $profileAttributes[] = $this->createAttributeDisplayItem(
+ $attribute,
+ ucwords(str_replace('_', ' ', $attribute->getName())),
+ 'yoti-icon-profile'
+ );
+ }
+ }
+ }
+
+ // Add age verifications.
+ $ageVerifications = $profile->getAgeVerifications();
+ if ($ageVerifications) {
+ foreach ($ageVerifications as $ageVerification) {
+ $profileAttributes[] = [
+ 'name' => 'Age Verification',
+ 'obj' => $ageVerification->getAttribute(),
+ 'age_verification' => $ageVerification,
+ 'icon' => 'yoti-icon-profile',
+ ];
+ }
+ }
+
+ return $profileAttributes;
+ }
+
+ /**
+ * Create attribute display item.
+ *
+ * @param Attribute $attribute
+ * @param string $displayName
+ * @param string $iconClass
+ *
+ * @return array
+ */
+ private function createAttributeDisplayItem(Attribute $attribute, string $displayName, string $iconClass): array
+ {
+ return [
+ 'name' => $displayName,
+ 'obj' => $attribute,
+ 'icon' => $iconClass,
+ ];
+ }
+}
diff --git a/examples/digitalidentity/app/Http/Controllers/ReceiptController.php b/examples/digitalidentity/app/Http/Controllers/ReceiptController.php
new file mode 100644
index 00000000..50be0e79
--- /dev/null
+++ b/examples/digitalidentity/app/Http/Controllers/ReceiptController.php
@@ -0,0 +1,126 @@
+warning("Unknown Content Type parsing as a String");
+ $activityDetails = $client->fetchShareReceipt($request->query('ReceiptID'));
+
+ // error_log("-------" . $activityDetails->getProfile()->getFullName()->getValue());
+
+ $profile = $activityDetails->getProfile();
+
+ return view('receipt', [
+ 'fullName' => $profile->getFullName(),
+ 'selfie' => $profile->getSelfie(),
+ 'profileAttributes' => $this->createAttributesDisplayList($profile),
+ ]);
+ }
+
+ /**
+ * Create attributes display list.
+ *
+ * @param UserProfile $profile
+ *
+ * @return array
+ */
+ private function createAttributesDisplayList(UserProfile $profile): array
+ {
+ $profileAttributes = [];
+ foreach ($profile->getAttributesList() as $attribute) {
+ switch ($attribute->getName()) {
+ case UserProfile::ATTR_SELFIE:
+ case UserProfile::ATTR_FULL_NAME:
+ // Selfie and full name are handled separately.
+ break;
+ case UserProfile::ATTR_GIVEN_NAMES:
+ $profileAttributes[] = $this->createAttributeDisplayItem($attribute, 'Given names', 'yoti-icon-profile');
+ break;
+ case UserProfile::ATTR_FAMILY_NAME:
+ $profileAttributes[] = $this->createAttributeDisplayItem($attribute, 'Family names', 'yoti-icon-profile');
+ break;
+ case UserProfile::ATTR_DATE_OF_BIRTH:
+ $profileAttributes[] = $this->createAttributeDisplayItem($attribute, 'Date of Birth', 'yoti-icon-calendar');
+ break;
+ case UserProfile::ATTR_GENDER:
+ $profileAttributes[] = $this->createAttributeDisplayItem($attribute, 'Gender', 'yoti-icon-gender');
+ break;
+ case UserProfile::ATTR_STRUCTURED_POSTAL_ADDRESS:
+ $profileAttributes[] = $this->createAttributeDisplayItem($attribute, 'Structured Postal Address', 'yoti-icon-address');
+ break;
+ case UserProfile::ATTR_POSTAL_ADDRESS:
+ $profileAttributes[] = $this->createAttributeDisplayItem($attribute, 'Address', 'yoti-icon-address');
+ break;
+ case UserProfile::ATTR_PHONE_NUMBER:
+ $profileAttributes[] = $this->createAttributeDisplayItem($attribute, 'Mobile number', 'yoti-icon-phone');
+ break;
+ case UserProfile::ATTR_NATIONALITY:
+ $profileAttributes[] = $this->createAttributeDisplayItem($attribute, 'Nationality', 'yoti-icon-nationality');
+ break;
+ case UserProfile::ATTR_EMAIL_ADDRESS:
+ $profileAttributes[] = $this->createAttributeDisplayItem($attribute, 'Email address', 'yoti-icon-email');
+ break;
+ case UserProfile::ATTR_DOCUMENT_DETAILS:
+ $profileAttributes[] = $this->createAttributeDisplayItem($attribute, 'Document Details', 'yoti-icon-profile');
+ break;
+ case UserProfile::ATTR_DOCUMENT_IMAGES:
+ $profileAttributes[] = $this->createAttributeDisplayItem($attribute, 'Document Images', 'yoti-icon-profile');
+ break;
+ default:
+ // Skip age verifications (name containing ":").
+ if (strpos($attribute->getName(), ':') === false) {
+ $profileAttributes[] = $this->createAttributeDisplayItem(
+ $attribute,
+ ucwords(str_replace('_', ' ', $attribute->getName())),
+ 'yoti-icon-profile'
+ );
+ }
+ }
+ }
+
+ // Add age verifications.
+ $ageVerifications = $profile->getAgeVerifications();
+ if ($ageVerifications) {
+ foreach ($ageVerifications as $ageVerification) {
+ $profileAttributes[] = [
+ 'name' => 'Age Verification',
+ 'obj' => $ageVerification->getAttribute(),
+ 'age_verification' => $ageVerification,
+ 'icon' => 'yoti-icon-profile',
+ ];
+ }
+ }
+
+ return $profileAttributes;
+ }
+
+ /**
+ * Create attribute display item.
+ *
+ * @param Attribute $attribute
+ * @param string $displayName
+ * @param string $iconClass
+ *
+ * @return array
+ */
+ private function createAttributeDisplayItem(Attribute $attribute, string $displayName, string $iconClass): array
+ {
+ return [
+ 'name' => $displayName,
+ 'obj' => $attribute,
+ 'icon' => $iconClass,
+ ];
+ }
+}
diff --git a/examples/digitalidentity/app/Http/Controllers/ShareController.php b/examples/digitalidentity/app/Http/Controllers/ShareController.php
new file mode 100644
index 00000000..f0a1d4e9
--- /dev/null
+++ b/examples/digitalidentity/app/Http/Controllers/ShareController.php
@@ -0,0 +1,31 @@
+ 'We now accept Yoti',
+ 'buttonConfig' => [
+ 'elements' => [
+ [
+ 'domId' => 'yoti-share-button',
+ 'clientSdkId' => config('yoti')['client.sdk.id'],
+ 'scenarioId' => config('yoti')['scenario.id'],
+ 'button' => [
+ 'label' => 'Use Yoti',
+ 'align' => 'center',
+ 'width' => 'auto',
+ 'verticalAlign' => 'top'
+ ],
+ 'type' => 'modal'
+ ]
+ ]
+ ]
+ ]);
+ }
+}
diff --git a/examples/digitalidentity/app/Http/Kernel.php b/examples/digitalidentity/app/Http/Kernel.php
new file mode 100644
index 00000000..c3640f30
--- /dev/null
+++ b/examples/digitalidentity/app/Http/Kernel.php
@@ -0,0 +1,66 @@
+ [
+ \App\Http\Middleware\EncryptCookies::class,
+ \Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse::class,
+ \Illuminate\Session\Middleware\StartSession::class,
+ // \Illuminate\Session\Middleware\AuthenticateSession::class,
+ \Illuminate\View\Middleware\ShareErrorsFromSession::class,
+ \App\Http\Middleware\VerifyCsrfToken::class,
+ \Illuminate\Routing\Middleware\SubstituteBindings::class,
+ ],
+
+ 'api' => [
+ 'throttle:60,1',
+ \Illuminate\Routing\Middleware\SubstituteBindings::class,
+ ],
+ ];
+
+ /**
+ * The application's route middleware.
+ *
+ * These middleware may be assigned to groups or used individually.
+ *
+ * @var array
+ */
+ protected $routeMiddleware = [
+ 'auth' => \App\Http\Middleware\Authenticate::class,
+ 'auth.basic' => \Illuminate\Auth\Middleware\AuthenticateWithBasicAuth::class,
+ 'bindings' => \Illuminate\Routing\Middleware\SubstituteBindings::class,
+ 'cache.headers' => \Illuminate\Http\Middleware\SetCacheHeaders::class,
+ 'can' => \Illuminate\Auth\Middleware\Authorize::class,
+ 'guest' => \App\Http\Middleware\RedirectIfAuthenticated::class,
+ 'password.confirm' => \Illuminate\Auth\Middleware\RequirePassword::class,
+ 'signed' => \Illuminate\Routing\Middleware\ValidateSignature::class,
+ 'throttle' => \Illuminate\Routing\Middleware\ThrottleRequests::class,
+ 'verified' => \Illuminate\Auth\Middleware\EnsureEmailIsVerified::class,
+ ];
+}
diff --git a/examples/digitalidentity/app/Http/Middleware/Authenticate.php b/examples/digitalidentity/app/Http/Middleware/Authenticate.php
new file mode 100644
index 00000000..704089a7
--- /dev/null
+++ b/examples/digitalidentity/app/Http/Middleware/Authenticate.php
@@ -0,0 +1,21 @@
+expectsJson()) {
+ return route('login');
+ }
+ }
+}
diff --git a/examples/digitalidentity/app/Http/Middleware/CheckForMaintenanceMode.php b/examples/digitalidentity/app/Http/Middleware/CheckForMaintenanceMode.php
new file mode 100644
index 00000000..35b9824b
--- /dev/null
+++ b/examples/digitalidentity/app/Http/Middleware/CheckForMaintenanceMode.php
@@ -0,0 +1,17 @@
+check()) {
+ return redirect(RouteServiceProvider::HOME);
+ }
+
+ return $next($request);
+ }
+}
diff --git a/examples/digitalidentity/app/Http/Middleware/TrimStrings.php b/examples/digitalidentity/app/Http/Middleware/TrimStrings.php
new file mode 100644
index 00000000..5a50e7b5
--- /dev/null
+++ b/examples/digitalidentity/app/Http/Middleware/TrimStrings.php
@@ -0,0 +1,18 @@
+mapApiRoutes();
+
+ $this->mapWebRoutes();
+
+ //
+ }
+
+ /**
+ * Define the "web" routes for the application.
+ *
+ * These routes all receive session state, CSRF protection, etc.
+ *
+ * @return void
+ */
+ protected function mapWebRoutes()
+ {
+ Route::middleware('web')
+ ->namespace($this->namespace)
+ ->group(base_path('routes/web.php'));
+ }
+
+ /**
+ * Define the "api" routes for the application.
+ *
+ * These routes are typically stateless.
+ *
+ * @return void
+ */
+ protected function mapApiRoutes()
+ {
+ Route::prefix('api')
+ ->middleware('api')
+ ->namespace($this->namespace)
+ ->group(base_path('routes/api.php'));
+ }
+}
diff --git a/examples/digitalidentity/app/Providers/YotiDigitalIdentityServiceProvider.php b/examples/digitalidentity/app/Providers/YotiDigitalIdentityServiceProvider.php
new file mode 100644
index 00000000..f0d3ffa2
--- /dev/null
+++ b/examples/digitalidentity/app/Providers/YotiDigitalIdentityServiceProvider.php
@@ -0,0 +1,29 @@
+app->singleton(DigitalIdentityClient::class, function ($app) {
+ $config = $app['config']['yoti'];
+ return new DigitalIdentityClient($config['client.sdk.id'], $config['pem.file.path']);
+ });
+ }
+
+ /**
+ * @return array
+ */
+ public function provides()
+ {
+ return [DigitalIdentityClient::class];
+ }
+}
diff --git a/examples/digitalidentity/app/Providers/YotiServiceProvider.php b/examples/digitalidentity/app/Providers/YotiServiceProvider.php
new file mode 100644
index 00000000..4c357610
--- /dev/null
+++ b/examples/digitalidentity/app/Providers/YotiServiceProvider.php
@@ -0,0 +1,29 @@
+app->singleton(YotiClient::class, function ($app) {
+ $config = $app['config']['yoti'];
+ return new YotiClient($config['client.sdk.id'], $config['pem.file.path']);
+ });
+ }
+
+ /**
+ * @return array
+ */
+ public function provides()
+ {
+ return [YotiClient::class];
+ }
+}
diff --git a/examples/digitalidentity/artisan b/examples/digitalidentity/artisan
new file mode 100644
index 00000000..5c23e2e2
--- /dev/null
+++ b/examples/digitalidentity/artisan
@@ -0,0 +1,53 @@
+#!/usr/bin/env php
+make(Illuminate\Contracts\Console\Kernel::class);
+
+$status = $kernel->handle(
+ $input = new Symfony\Component\Console\Input\ArgvInput,
+ new Symfony\Component\Console\Output\ConsoleOutput
+);
+
+/*
+|--------------------------------------------------------------------------
+| Shutdown The Application
+|--------------------------------------------------------------------------
+|
+| Once Artisan has finished running, we will fire off the shutdown events
+| so that any final work may be done by the application before we shut
+| down the process. This is the last thing to happen to the request.
+|
+*/
+
+$kernel->terminate($input, $status);
+
+exit($status);
diff --git a/examples/digitalidentity/bootstrap/app.php b/examples/digitalidentity/bootstrap/app.php
new file mode 100644
index 00000000..037e17df
--- /dev/null
+++ b/examples/digitalidentity/bootstrap/app.php
@@ -0,0 +1,55 @@
+singleton(
+ Illuminate\Contracts\Http\Kernel::class,
+ App\Http\Kernel::class
+);
+
+$app->singleton(
+ Illuminate\Contracts\Console\Kernel::class,
+ App\Console\Kernel::class
+);
+
+$app->singleton(
+ Illuminate\Contracts\Debug\ExceptionHandler::class,
+ App\Exceptions\Handler::class
+);
+
+/*
+|--------------------------------------------------------------------------
+| Return The Application
+|--------------------------------------------------------------------------
+|
+| This script returns the application instance. The instance is given to
+| the calling script so we can separate the building of the instances
+| from the actual running of the application and sending responses.
+|
+*/
+
+return $app;
diff --git a/examples/digitalidentity/bootstrap/cache/.gitignore b/examples/digitalidentity/bootstrap/cache/.gitignore
new file mode 100644
index 00000000..d6b7ef32
--- /dev/null
+++ b/examples/digitalidentity/bootstrap/cache/.gitignore
@@ -0,0 +1,2 @@
+*
+!.gitignore
diff --git a/examples/digitalidentity/composer.json b/examples/digitalidentity/composer.json
new file mode 100644
index 00000000..f2b24247
--- /dev/null
+++ b/examples/digitalidentity/composer.json
@@ -0,0 +1,59 @@
+{
+ "name": "yoti/yoti-php-sdk-example-digital-identity",
+ "description": "Yoti SDK Digital Identity Demo",
+ "license": "MIT",
+ "require": {
+ "php": "^8.0",
+ "fideloper/proxy": "^4.2",
+ "fruitcake/laravel-cors": "^1.0",
+ "guzzlehttp/guzzle": "^6.4 || ^7.0",
+ "laravel/framework": "^8.0",
+ "laravel/tinker": "^2.3.0",
+ "yoti/yoti-php-sdk": "^4.0"
+ },
+ "require-dev": {
+ "facade/ignition": "^2.0"
+ },
+ "config": {
+ "optimize-autoloader": true,
+ "preferred-install": "dist",
+ "sort-packages": true
+ },
+ "extra": {
+ "laravel": {
+ "dont-discover": []
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "App\\": "app/"
+ }
+ },
+ "minimum-stability": "dev",
+ "prefer-stable": true,
+ "scripts": {
+ "post-autoload-dump": [
+ "Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
+ "@php artisan package:discover --ansi"
+ ],
+ "post-update-cmd": "@php artisan key:generate --ansi",
+ "copy-sdk": "grep -q 'yoti-php-sdk' ../../composer.json && rm -fr ./sdk && cd ../../ && git archive --prefix=sdk/ --format=tar HEAD | (cd - && tar xf -) || echo 'Could not install SDK from parent directory'",
+ "install-local": [
+ "@copy-sdk",
+ "composer install"
+ ],
+ "update-local": [
+ "@copy-sdk",
+ "composer update"
+ ]
+ },
+ "repositories": [
+ {
+ "type": "path",
+ "url": "./sdk",
+ "options": {
+ "symlink": true
+ }
+ }
+ ]
+}
diff --git a/examples/digitalidentity/config/app.php b/examples/digitalidentity/config/app.php
new file mode 100644
index 00000000..1a57883e
--- /dev/null
+++ b/examples/digitalidentity/config/app.php
@@ -0,0 +1,229 @@
+ env('APP_NAME', 'Laravel'),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Application Environment
+ |--------------------------------------------------------------------------
+ |
+ | This value determines the "environment" your application is currently
+ | running in. This may determine how you prefer to configure various
+ | services the application utilizes. Set this in your ".env" file.
+ |
+ */
+
+ 'env' => env('APP_ENV', 'production'),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Application Debug Mode
+ |--------------------------------------------------------------------------
+ |
+ | When your application is in debug mode, detailed error messages with
+ | stack traces will be shown on every error that occurs within your
+ | application. If disabled, a simple generic error page is shown.
+ |
+ */
+
+ 'debug' => (bool) env('APP_DEBUG', false),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Application URL
+ |--------------------------------------------------------------------------
+ |
+ | This URL is used by the console to properly generate URLs when using
+ | the Artisan command line tool. You should set this to the root of
+ | your application so that it is used when running Artisan tasks.
+ |
+ */
+
+ 'url' => env('APP_URL', 'http://localhost'),
+
+ 'asset_url' => env('ASSET_URL', null),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Application Timezone
+ |--------------------------------------------------------------------------
+ |
+ | Here you may specify the default timezone for your application, which
+ | will be used by the PHP date and date-time functions. We have gone
+ | ahead and set this to a sensible default for you out of the box.
+ |
+ */
+
+ 'timezone' => 'UTC',
+
+ /*
+ |--------------------------------------------------------------------------
+ | Application Locale Configuration
+ |--------------------------------------------------------------------------
+ |
+ | The application locale determines the default locale that will be used
+ | by the translation service provider. You are free to set this value
+ | to any of the locales which will be supported by the application.
+ |
+ */
+
+ 'locale' => 'en',
+
+ /*
+ |--------------------------------------------------------------------------
+ | Application Fallback Locale
+ |--------------------------------------------------------------------------
+ |
+ | The fallback locale determines the locale to use when the current one
+ | is not available. You may change the value to correspond to any of
+ | the language folders that are provided through your application.
+ |
+ */
+
+ 'fallback_locale' => 'en',
+
+ /*
+ |--------------------------------------------------------------------------
+ | Faker Locale
+ |--------------------------------------------------------------------------
+ |
+ | This locale will be used by the Faker PHP library when generating fake
+ | data for your database seeds. For example, this will be used to get
+ | localized telephone numbers, street address information and more.
+ |
+ */
+
+ 'faker_locale' => 'en_US',
+
+ /*
+ |--------------------------------------------------------------------------
+ | Encryption Key
+ |--------------------------------------------------------------------------
+ |
+ | This key is used by the Illuminate encrypter service and should be set
+ | to a random, 32 character string, otherwise these encrypted strings
+ | will not be safe. Please do this before deploying an application!
+ |
+ */
+
+ 'key' => env('APP_KEY'),
+
+ 'cipher' => 'AES-256-CBC',
+
+ /*
+ |--------------------------------------------------------------------------
+ | Autoloaded Service Providers
+ |--------------------------------------------------------------------------
+ |
+ | The service providers listed here will be automatically loaded on the
+ | request to your application. Feel free to add your own services to
+ | this array to grant expanded functionality to your applications.
+ |
+ */
+
+ 'providers' => [
+
+ /*
+ * Laravel Framework Service Providers...
+ */
+ Illuminate\Auth\AuthServiceProvider::class,
+ Illuminate\Broadcasting\BroadcastServiceProvider::class,
+ Illuminate\Bus\BusServiceProvider::class,
+ Illuminate\Cache\CacheServiceProvider::class,
+ Illuminate\Foundation\Providers\ConsoleSupportServiceProvider::class,
+ Illuminate\Cookie\CookieServiceProvider::class,
+ Illuminate\Database\DatabaseServiceProvider::class,
+ Illuminate\Encryption\EncryptionServiceProvider::class,
+ Illuminate\Filesystem\FilesystemServiceProvider::class,
+ Illuminate\Foundation\Providers\FoundationServiceProvider::class,
+ Illuminate\Hashing\HashServiceProvider::class,
+ Illuminate\Mail\MailServiceProvider::class,
+ Illuminate\Notifications\NotificationServiceProvider::class,
+ Illuminate\Pagination\PaginationServiceProvider::class,
+ Illuminate\Pipeline\PipelineServiceProvider::class,
+ Illuminate\Queue\QueueServiceProvider::class,
+ Illuminate\Redis\RedisServiceProvider::class,
+ Illuminate\Auth\Passwords\PasswordResetServiceProvider::class,
+ Illuminate\Session\SessionServiceProvider::class,
+ Illuminate\Translation\TranslationServiceProvider::class,
+ Illuminate\Validation\ValidationServiceProvider::class,
+ Illuminate\View\ViewServiceProvider::class,
+
+ /*
+ * Package Service Providers...
+ */
+
+ /*
+ * Application Service Providers...
+ */
+ App\Providers\YotiServiceProvider::class,
+ App\Providers\YotiDigitalIdentityServiceProvider::class,
+ App\Providers\RouteServiceProvider::class,
+ ],
+
+ /*
+ |--------------------------------------------------------------------------
+ | Class Aliases
+ |--------------------------------------------------------------------------
+ |
+ | This array of class aliases will be registered when this application
+ | is started. However, feel free to register as many as you wish as
+ | the aliases are "lazy" loaded so they don't hinder performance.
+ |
+ */
+
+ 'aliases' => [
+
+ 'App' => Illuminate\Support\Facades\App::class,
+ 'Arr' => Illuminate\Support\Arr::class,
+ 'Artisan' => Illuminate\Support\Facades\Artisan::class,
+ 'Auth' => Illuminate\Support\Facades\Auth::class,
+ 'Blade' => Illuminate\Support\Facades\Blade::class,
+ 'Broadcast' => Illuminate\Support\Facades\Broadcast::class,
+ 'Bus' => Illuminate\Support\Facades\Bus::class,
+ 'Cache' => Illuminate\Support\Facades\Cache::class,
+ 'Config' => Illuminate\Support\Facades\Config::class,
+ 'Cookie' => Illuminate\Support\Facades\Cookie::class,
+ 'Crypt' => Illuminate\Support\Facades\Crypt::class,
+ 'DB' => Illuminate\Support\Facades\DB::class,
+ 'Eloquent' => Illuminate\Database\Eloquent\Model::class,
+ 'Event' => Illuminate\Support\Facades\Event::class,
+ 'File' => Illuminate\Support\Facades\File::class,
+ 'Gate' => Illuminate\Support\Facades\Gate::class,
+ 'Hash' => Illuminate\Support\Facades\Hash::class,
+ 'Http' => Illuminate\Support\Facades\Http::class,
+ 'Lang' => Illuminate\Support\Facades\Lang::class,
+ 'Log' => Illuminate\Support\Facades\Log::class,
+ 'Mail' => Illuminate\Support\Facades\Mail::class,
+ 'Notification' => Illuminate\Support\Facades\Notification::class,
+ 'Password' => Illuminate\Support\Facades\Password::class,
+ 'Queue' => Illuminate\Support\Facades\Queue::class,
+ 'Redirect' => Illuminate\Support\Facades\Redirect::class,
+ 'Redis' => Illuminate\Support\Facades\Redis::class,
+ 'Request' => Illuminate\Support\Facades\Request::class,
+ 'Response' => Illuminate\Support\Facades\Response::class,
+ 'Route' => Illuminate\Support\Facades\Route::class,
+ 'Schema' => Illuminate\Support\Facades\Schema::class,
+ 'Session' => Illuminate\Support\Facades\Session::class,
+ 'Storage' => Illuminate\Support\Facades\Storage::class,
+ 'Str' => Illuminate\Support\Str::class,
+ 'URL' => Illuminate\Support\Facades\URL::class,
+ 'Validator' => Illuminate\Support\Facades\Validator::class,
+ 'View' => Illuminate\Support\Facades\View::class,
+
+ ],
+
+];
diff --git a/examples/digitalidentity/config/auth.php b/examples/digitalidentity/config/auth.php
new file mode 100644
index 00000000..aaf982bc
--- /dev/null
+++ b/examples/digitalidentity/config/auth.php
@@ -0,0 +1,117 @@
+ [
+ 'guard' => 'web',
+ 'passwords' => 'users',
+ ],
+
+ /*
+ |--------------------------------------------------------------------------
+ | Authentication Guards
+ |--------------------------------------------------------------------------
+ |
+ | Next, you may define every authentication guard for your application.
+ | Of course, a great default configuration has been defined for you
+ | here which uses session storage and the Eloquent user provider.
+ |
+ | All authentication drivers have a user provider. This defines how the
+ | users are actually retrieved out of your database or other storage
+ | mechanisms used by this application to persist your user's data.
+ |
+ | Supported: "session", "token"
+ |
+ */
+
+ 'guards' => [
+ 'web' => [
+ 'driver' => 'session',
+ 'provider' => 'users',
+ ],
+
+ 'api' => [
+ 'driver' => 'token',
+ 'provider' => 'users',
+ 'hash' => false,
+ ],
+ ],
+
+ /*
+ |--------------------------------------------------------------------------
+ | User Providers
+ |--------------------------------------------------------------------------
+ |
+ | All authentication drivers have a user provider. This defines how the
+ | users are actually retrieved out of your database or other storage
+ | mechanisms used by this application to persist your user's data.
+ |
+ | If you have multiple user tables or models you may configure multiple
+ | sources which represent each model / table. These sources may then
+ | be assigned to any extra authentication guards you have defined.
+ |
+ | Supported: "database", "eloquent"
+ |
+ */
+
+ 'providers' => [
+ 'users' => [
+ 'driver' => 'eloquent',
+ 'model' => App\User::class,
+ ],
+
+ // 'users' => [
+ // 'driver' => 'database',
+ // 'table' => 'users',
+ // ],
+ ],
+
+ /*
+ |--------------------------------------------------------------------------
+ | Resetting Passwords
+ |--------------------------------------------------------------------------
+ |
+ | You may specify multiple password reset configurations if you have more
+ | than one user table or model in the application and you want to have
+ | separate password reset settings based on the specific user types.
+ |
+ | The expire time is the number of minutes that the reset token should be
+ | considered valid. This security feature keeps tokens short-lived so
+ | they have less time to be guessed. You may change this as needed.
+ |
+ */
+
+ 'passwords' => [
+ 'users' => [
+ 'provider' => 'users',
+ 'table' => 'password_resets',
+ 'expire' => 60,
+ 'throttle' => 60,
+ ],
+ ],
+
+ /*
+ |--------------------------------------------------------------------------
+ | Password Confirmation Timeout
+ |--------------------------------------------------------------------------
+ |
+ | Here you may define the amount of seconds before a password confirmation
+ | times out and the user is prompted to re-enter their password via the
+ | confirmation screen. By default, the timeout lasts for three hours.
+ |
+ */
+
+ 'password_timeout' => 10800,
+
+];
diff --git a/examples/digitalidentity/config/broadcasting.php b/examples/digitalidentity/config/broadcasting.php
new file mode 100644
index 00000000..3bba1103
--- /dev/null
+++ b/examples/digitalidentity/config/broadcasting.php
@@ -0,0 +1,59 @@
+ env('BROADCAST_DRIVER', 'null'),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Broadcast Connections
+ |--------------------------------------------------------------------------
+ |
+ | Here you may define all of the broadcast connections that will be used
+ | to broadcast events to other systems or over websockets. Samples of
+ | each available type of connection are provided inside this array.
+ |
+ */
+
+ 'connections' => [
+
+ 'pusher' => [
+ 'driver' => 'pusher',
+ 'key' => env('PUSHER_APP_KEY'),
+ 'secret' => env('PUSHER_APP_SECRET'),
+ 'app_id' => env('PUSHER_APP_ID'),
+ 'options' => [
+ 'cluster' => env('PUSHER_APP_CLUSTER'),
+ 'useTLS' => true,
+ ],
+ ],
+
+ 'redis' => [
+ 'driver' => 'redis',
+ 'connection' => 'default',
+ ],
+
+ 'log' => [
+ 'driver' => 'log',
+ ],
+
+ 'null' => [
+ 'driver' => 'null',
+ ],
+
+ ],
+
+];
diff --git a/examples/digitalidentity/config/cache.php b/examples/digitalidentity/config/cache.php
new file mode 100644
index 00000000..4f41fdf9
--- /dev/null
+++ b/examples/digitalidentity/config/cache.php
@@ -0,0 +1,104 @@
+ env('CACHE_DRIVER', 'file'),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Cache Stores
+ |--------------------------------------------------------------------------
+ |
+ | Here you may define all of the cache "stores" for your application as
+ | well as their drivers. You may even define multiple stores for the
+ | same cache driver to group types of items stored in your caches.
+ |
+ */
+
+ 'stores' => [
+
+ 'apc' => [
+ 'driver' => 'apc',
+ ],
+
+ 'array' => [
+ 'driver' => 'array',
+ 'serialize' => false,
+ ],
+
+ 'database' => [
+ 'driver' => 'database',
+ 'table' => 'cache',
+ 'connection' => null,
+ ],
+
+ 'file' => [
+ 'driver' => 'file',
+ 'path' => storage_path('framework/cache/data'),
+ ],
+
+ 'memcached' => [
+ 'driver' => 'memcached',
+ 'persistent_id' => env('MEMCACHED_PERSISTENT_ID'),
+ 'sasl' => [
+ env('MEMCACHED_USERNAME'),
+ env('MEMCACHED_PASSWORD'),
+ ],
+ 'options' => [
+ // Memcached::OPT_CONNECT_TIMEOUT => 2000,
+ ],
+ 'servers' => [
+ [
+ 'host' => env('MEMCACHED_HOST', '127.0.0.1'),
+ 'port' => env('MEMCACHED_PORT', 11211),
+ 'weight' => 100,
+ ],
+ ],
+ ],
+
+ 'redis' => [
+ 'driver' => 'redis',
+ 'connection' => 'cache',
+ ],
+
+ 'dynamodb' => [
+ 'driver' => 'dynamodb',
+ 'key' => env('AWS_ACCESS_KEY_ID'),
+ 'secret' => env('AWS_SECRET_ACCESS_KEY'),
+ 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
+ 'table' => env('DYNAMODB_CACHE_TABLE', 'cache'),
+ 'endpoint' => env('DYNAMODB_ENDPOINT'),
+ ],
+
+ ],
+
+ /*
+ |--------------------------------------------------------------------------
+ | Cache Key Prefix
+ |--------------------------------------------------------------------------
+ |
+ | When utilizing a RAM based store such as APC or Memcached, there might
+ | be other applications utilizing the same cache. So, we'll specify a
+ | value to get prefixed to all our keys so we can avoid collisions.
+ |
+ */
+
+ 'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_cache'),
+
+];
diff --git a/examples/digitalidentity/config/cors.php b/examples/digitalidentity/config/cors.php
new file mode 100644
index 00000000..558369dc
--- /dev/null
+++ b/examples/digitalidentity/config/cors.php
@@ -0,0 +1,34 @@
+ ['api/*'],
+
+ 'allowed_methods' => ['*'],
+
+ 'allowed_origins' => ['*'],
+
+ 'allowed_origins_patterns' => [],
+
+ 'allowed_headers' => ['*'],
+
+ 'exposed_headers' => [],
+
+ 'max_age' => 0,
+
+ 'supports_credentials' => false,
+
+];
diff --git a/examples/digitalidentity/config/database.php b/examples/digitalidentity/config/database.php
new file mode 100644
index 00000000..b42d9b30
--- /dev/null
+++ b/examples/digitalidentity/config/database.php
@@ -0,0 +1,147 @@
+ env('DB_CONNECTION', 'mysql'),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Database Connections
+ |--------------------------------------------------------------------------
+ |
+ | Here are each of the database connections setup for your application.
+ | Of course, examples of configuring each database platform that is
+ | supported by Laravel is shown below to make development simple.
+ |
+ |
+ | All database work in Laravel is done through the PHP PDO facilities
+ | so make sure you have the driver for your particular database of
+ | choice installed on your machine before you begin development.
+ |
+ */
+
+ 'connections' => [
+
+ 'sqlite' => [
+ 'driver' => 'sqlite',
+ 'url' => env('DATABASE_URL'),
+ 'database' => env('DB_DATABASE', database_path('database.sqlite')),
+ 'prefix' => '',
+ 'foreign_key_constraints' => env('DB_FOREIGN_KEYS', true),
+ ],
+
+ 'mysql' => [
+ 'driver' => 'mysql',
+ 'url' => env('DATABASE_URL'),
+ 'host' => env('DB_HOST', '127.0.0.1'),
+ 'port' => env('DB_PORT', '3306'),
+ 'database' => env('DB_DATABASE', 'forge'),
+ 'username' => env('DB_USERNAME', 'forge'),
+ 'password' => env('DB_PASSWORD', ''),
+ 'unix_socket' => env('DB_SOCKET', ''),
+ 'charset' => 'utf8mb4',
+ 'collation' => 'utf8mb4_unicode_ci',
+ 'prefix' => '',
+ 'prefix_indexes' => true,
+ 'strict' => true,
+ 'engine' => null,
+ 'options' => extension_loaded('pdo_mysql') ? array_filter([
+ PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'),
+ ]) : [],
+ ],
+
+ 'pgsql' => [
+ 'driver' => 'pgsql',
+ 'url' => env('DATABASE_URL'),
+ 'host' => env('DB_HOST', '127.0.0.1'),
+ 'port' => env('DB_PORT', '5432'),
+ 'database' => env('DB_DATABASE', 'forge'),
+ 'username' => env('DB_USERNAME', 'forge'),
+ 'password' => env('DB_PASSWORD', ''),
+ 'charset' => 'utf8',
+ 'prefix' => '',
+ 'prefix_indexes' => true,
+ 'schema' => 'public',
+ 'sslmode' => 'prefer',
+ ],
+
+ 'sqlsrv' => [
+ 'driver' => 'sqlsrv',
+ 'url' => env('DATABASE_URL'),
+ 'host' => env('DB_HOST', 'localhost'),
+ 'port' => env('DB_PORT', '1433'),
+ 'database' => env('DB_DATABASE', 'forge'),
+ 'username' => env('DB_USERNAME', 'forge'),
+ 'password' => env('DB_PASSWORD', ''),
+ 'charset' => 'utf8',
+ 'prefix' => '',
+ 'prefix_indexes' => true,
+ ],
+
+ ],
+
+ /*
+ |--------------------------------------------------------------------------
+ | Migration Repository Table
+ |--------------------------------------------------------------------------
+ |
+ | This table keeps track of all the migrations that have already run for
+ | your application. Using this information, we can determine which of
+ | the migrations on disk haven't actually been run in the database.
+ |
+ */
+
+ 'migrations' => 'migrations',
+
+ /*
+ |--------------------------------------------------------------------------
+ | Redis Databases
+ |--------------------------------------------------------------------------
+ |
+ | Redis is an open source, fast, and advanced key-value store that also
+ | provides a richer body of commands than a typical key-value system
+ | such as APC or Memcached. Laravel makes it easy to dig right in.
+ |
+ */
+
+ 'redis' => [
+
+ 'client' => env('REDIS_CLIENT', 'phpredis'),
+
+ 'options' => [
+ 'cluster' => env('REDIS_CLUSTER', 'redis'),
+ 'prefix' => env('REDIS_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_database_'),
+ ],
+
+ 'default' => [
+ 'url' => env('REDIS_URL'),
+ 'host' => env('REDIS_HOST', '127.0.0.1'),
+ 'password' => env('REDIS_PASSWORD', null),
+ 'port' => env('REDIS_PORT', '6379'),
+ 'database' => env('REDIS_DB', '0'),
+ ],
+
+ 'cache' => [
+ 'url' => env('REDIS_URL'),
+ 'host' => env('REDIS_HOST', '127.0.0.1'),
+ 'password' => env('REDIS_PASSWORD', null),
+ 'port' => env('REDIS_PORT', '6379'),
+ 'database' => env('REDIS_CACHE_DB', '1'),
+ ],
+
+ ],
+
+];
diff --git a/examples/digitalidentity/config/filesystems.php b/examples/digitalidentity/config/filesystems.php
new file mode 100644
index 00000000..cd9f0962
--- /dev/null
+++ b/examples/digitalidentity/config/filesystems.php
@@ -0,0 +1,84 @@
+ env('FILESYSTEM_DRIVER', 'local'),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Default Cloud Filesystem Disk
+ |--------------------------------------------------------------------------
+ |
+ | Many applications store files both locally and in the cloud. For this
+ | reason, you may specify a default "cloud" driver here. This driver
+ | will be bound as the Cloud disk implementation in the container.
+ |
+ */
+
+ 'cloud' => env('FILESYSTEM_CLOUD', 's3'),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Filesystem Disks
+ |--------------------------------------------------------------------------
+ |
+ | Here you may configure as many filesystem "disks" as you wish, and you
+ | may even configure multiple disks of the same driver. Defaults have
+ | been setup for each driver as an example of the required options.
+ |
+ | Supported Drivers: "local", "ftp", "sftp", "s3"
+ |
+ */
+
+ 'disks' => [
+
+ 'local' => [
+ 'driver' => 'local',
+ 'root' => storage_path('app'),
+ ],
+
+ 'public' => [
+ 'driver' => 'local',
+ 'root' => storage_path('app/public'),
+ 'url' => env('APP_URL').'/storage',
+ 'visibility' => 'public',
+ ],
+
+ 's3' => [
+ 'driver' => 's3',
+ 'key' => env('AWS_ACCESS_KEY_ID'),
+ 'secret' => env('AWS_SECRET_ACCESS_KEY'),
+ 'region' => env('AWS_DEFAULT_REGION'),
+ 'bucket' => env('AWS_BUCKET'),
+ 'url' => env('AWS_URL'),
+ ],
+
+ ],
+
+ /*
+ |--------------------------------------------------------------------------
+ | Symbolic Links
+ |--------------------------------------------------------------------------
+ |
+ | Here you may configure the symbolic links that will be created when the
+ | `storage:link` Artisan command is executed. The array keys should be
+ | the locations of the links and the values should be their targets.
+ |
+ */
+
+ 'links' => [
+ public_path('storage') => storage_path('app/public'),
+ ],
+
+];
diff --git a/examples/digitalidentity/config/hashing.php b/examples/digitalidentity/config/hashing.php
new file mode 100644
index 00000000..84257708
--- /dev/null
+++ b/examples/digitalidentity/config/hashing.php
@@ -0,0 +1,52 @@
+ 'bcrypt',
+
+ /*
+ |--------------------------------------------------------------------------
+ | Bcrypt Options
+ |--------------------------------------------------------------------------
+ |
+ | Here you may specify the configuration options that should be used when
+ | passwords are hashed using the Bcrypt algorithm. This will allow you
+ | to control the amount of time it takes to hash the given password.
+ |
+ */
+
+ 'bcrypt' => [
+ 'rounds' => env('BCRYPT_ROUNDS', 10),
+ ],
+
+ /*
+ |--------------------------------------------------------------------------
+ | Argon Options
+ |--------------------------------------------------------------------------
+ |
+ | Here you may specify the configuration options that should be used when
+ | passwords are hashed using the Argon algorithm. These will allow you
+ | to control the amount of time it takes to hash the given password.
+ |
+ */
+
+ 'argon' => [
+ 'memory' => 1024,
+ 'threads' => 2,
+ 'time' => 2,
+ ],
+
+];
diff --git a/examples/digitalidentity/config/logging.php b/examples/digitalidentity/config/logging.php
new file mode 100644
index 00000000..088c204e
--- /dev/null
+++ b/examples/digitalidentity/config/logging.php
@@ -0,0 +1,104 @@
+ env('LOG_CHANNEL', 'stack'),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Log Channels
+ |--------------------------------------------------------------------------
+ |
+ | Here you may configure the log channels for your application. Out of
+ | the box, Laravel uses the Monolog PHP logging library. This gives
+ | you a variety of powerful log handlers / formatters to utilize.
+ |
+ | Available Drivers: "single", "daily", "slack", "syslog",
+ | "errorlog", "monolog",
+ | "custom", "stack"
+ |
+ */
+
+ 'channels' => [
+ 'stack' => [
+ 'driver' => 'stack',
+ 'channels' => ['single'],
+ 'ignore_exceptions' => false,
+ ],
+
+ 'single' => [
+ 'driver' => 'single',
+ 'path' => storage_path('logs/laravel.log'),
+ 'level' => 'debug',
+ ],
+
+ 'daily' => [
+ 'driver' => 'daily',
+ 'path' => storage_path('logs/laravel.log'),
+ 'level' => 'debug',
+ 'days' => 14,
+ ],
+
+ 'slack' => [
+ 'driver' => 'slack',
+ 'url' => env('LOG_SLACK_WEBHOOK_URL'),
+ 'username' => 'Laravel Log',
+ 'emoji' => ':boom:',
+ 'level' => 'critical',
+ ],
+
+ 'papertrail' => [
+ 'driver' => 'monolog',
+ 'level' => 'debug',
+ 'handler' => SyslogUdpHandler::class,
+ 'handler_with' => [
+ 'host' => env('PAPERTRAIL_URL'),
+ 'port' => env('PAPERTRAIL_PORT'),
+ ],
+ ],
+
+ 'stderr' => [
+ 'driver' => 'monolog',
+ 'handler' => StreamHandler::class,
+ 'formatter' => env('LOG_STDERR_FORMATTER'),
+ 'with' => [
+ 'stream' => 'php://stderr',
+ ],
+ ],
+
+ 'syslog' => [
+ 'driver' => 'syslog',
+ 'level' => 'debug',
+ ],
+
+ 'errorlog' => [
+ 'driver' => 'errorlog',
+ 'level' => 'debug',
+ ],
+
+ 'null' => [
+ 'driver' => 'monolog',
+ 'handler' => NullHandler::class,
+ ],
+
+ 'emergency' => [
+ 'path' => storage_path('logs/laravel.log'),
+ ],
+ ],
+
+];
diff --git a/examples/digitalidentity/config/mail.php b/examples/digitalidentity/config/mail.php
new file mode 100644
index 00000000..cfef410f
--- /dev/null
+++ b/examples/digitalidentity/config/mail.php
@@ -0,0 +1,108 @@
+ env('MAIL_MAILER', 'smtp'),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Mailer Configurations
+ |--------------------------------------------------------------------------
+ |
+ | Here you may configure all of the mailers used by your application plus
+ | their respective settings. Several examples have been configured for
+ | you and you are free to add your own as your application requires.
+ |
+ | Laravel supports a variety of mail "transport" drivers to be used while
+ | sending an e-mail. You will specify which one you are using for your
+ | mailers below. You are free to add additional mailers as required.
+ |
+ | Supported: "smtp", "sendmail", "mailgun", "ses",
+ | "postmark", "log", "array"
+ |
+ */
+
+ 'mailers' => [
+ 'smtp' => [
+ 'transport' => 'smtp',
+ 'host' => env('MAIL_HOST', 'smtp.mailgun.org'),
+ 'port' => env('MAIL_PORT', 587),
+ 'encryption' => env('MAIL_ENCRYPTION', 'tls'),
+ 'username' => env('MAIL_USERNAME'),
+ 'password' => env('MAIL_PASSWORD'),
+ ],
+
+ 'ses' => [
+ 'transport' => 'ses',
+ ],
+
+ 'mailgun' => [
+ 'transport' => 'mailgun',
+ ],
+
+ 'postmark' => [
+ 'transport' => 'postmark',
+ ],
+
+ 'sendmail' => [
+ 'transport' => 'sendmail',
+ 'path' => '/usr/sbin/sendmail -bs',
+ ],
+
+ 'log' => [
+ 'transport' => 'log',
+ 'channel' => env('MAIL_LOG_CHANNEL'),
+ ],
+
+ 'array' => [
+ 'transport' => 'array',
+ ],
+ ],
+
+ /*
+ |--------------------------------------------------------------------------
+ | Global "From" Address
+ |--------------------------------------------------------------------------
+ |
+ | You may wish for all e-mails sent by your application to be sent from
+ | the same address. Here, you may specify a name and address that is
+ | used globally for all e-mails that are sent by your application.
+ |
+ */
+
+ 'from' => [
+ 'address' => env('MAIL_FROM_ADDRESS', 'hello@example.com'),
+ 'name' => env('MAIL_FROM_NAME', 'Example'),
+ ],
+
+ /*
+ |--------------------------------------------------------------------------
+ | Markdown Mail Settings
+ |--------------------------------------------------------------------------
+ |
+ | If you are using Markdown based email rendering, you may configure your
+ | theme and component paths here, allowing you to customize the design
+ | of the emails. Or, you may simply stick with the Laravel defaults!
+ |
+ */
+
+ 'markdown' => [
+ 'theme' => 'default',
+
+ 'paths' => [
+ resource_path('views/vendor/mail'),
+ ],
+ ],
+
+];
diff --git a/examples/digitalidentity/config/queue.php b/examples/digitalidentity/config/queue.php
new file mode 100644
index 00000000..00b76d65
--- /dev/null
+++ b/examples/digitalidentity/config/queue.php
@@ -0,0 +1,89 @@
+ env('QUEUE_CONNECTION', 'sync'),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Queue Connections
+ |--------------------------------------------------------------------------
+ |
+ | Here you may configure the connection information for each server that
+ | is used by your application. A default configuration has been added
+ | for each back-end shipped with Laravel. You are free to add more.
+ |
+ | Drivers: "sync", "database", "beanstalkd", "sqs", "redis", "null"
+ |
+ */
+
+ 'connections' => [
+
+ 'sync' => [
+ 'driver' => 'sync',
+ ],
+
+ 'database' => [
+ 'driver' => 'database',
+ 'table' => 'jobs',
+ 'queue' => 'default',
+ 'retry_after' => 90,
+ ],
+
+ 'beanstalkd' => [
+ 'driver' => 'beanstalkd',
+ 'host' => 'localhost',
+ 'queue' => 'default',
+ 'retry_after' => 90,
+ 'block_for' => 0,
+ ],
+
+ 'sqs' => [
+ 'driver' => 'sqs',
+ 'key' => env('AWS_ACCESS_KEY_ID'),
+ 'secret' => env('AWS_SECRET_ACCESS_KEY'),
+ 'prefix' => env('SQS_PREFIX', 'https://sqs.us-east-1.amazonaws.com/your-account-id'),
+ 'queue' => env('SQS_QUEUE', 'your-queue-name'),
+ 'suffix' => env('SQS_SUFFIX'),
+ 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
+ ],
+
+ 'redis' => [
+ 'driver' => 'redis',
+ 'connection' => 'default',
+ 'queue' => env('REDIS_QUEUE', 'default'),
+ 'retry_after' => 90,
+ 'block_for' => null,
+ ],
+
+ ],
+
+ /*
+ |--------------------------------------------------------------------------
+ | Failed Queue Jobs
+ |--------------------------------------------------------------------------
+ |
+ | These options configure the behavior of failed queue job logging so you
+ | can control which database and table are used to store the jobs that
+ | have failed. You may change them to any database / table you wish.
+ |
+ */
+
+ 'failed' => [
+ 'driver' => env('QUEUE_FAILED_DRIVER', 'database'),
+ 'database' => env('DB_CONNECTION', 'mysql'),
+ 'table' => 'failed_jobs',
+ ],
+
+];
diff --git a/examples/digitalidentity/config/services.php b/examples/digitalidentity/config/services.php
new file mode 100644
index 00000000..2a1d616c
--- /dev/null
+++ b/examples/digitalidentity/config/services.php
@@ -0,0 +1,33 @@
+ [
+ 'domain' => env('MAILGUN_DOMAIN'),
+ 'secret' => env('MAILGUN_SECRET'),
+ 'endpoint' => env('MAILGUN_ENDPOINT', 'api.mailgun.net'),
+ ],
+
+ 'postmark' => [
+ 'token' => env('POSTMARK_TOKEN'),
+ ],
+
+ 'ses' => [
+ 'key' => env('AWS_ACCESS_KEY_ID'),
+ 'secret' => env('AWS_SECRET_ACCESS_KEY'),
+ 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
+ ],
+
+];
diff --git a/examples/digitalidentity/config/session.php b/examples/digitalidentity/config/session.php
new file mode 100644
index 00000000..d0ccd5a8
--- /dev/null
+++ b/examples/digitalidentity/config/session.php
@@ -0,0 +1,199 @@
+ env('SESSION_DRIVER', 'file'),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Session Lifetime
+ |--------------------------------------------------------------------------
+ |
+ | Here you may specify the number of minutes that you wish the session
+ | to be allowed to remain idle before it expires. If you want them
+ | to immediately expire on the browser closing, set that option.
+ |
+ */
+
+ 'lifetime' => env('SESSION_LIFETIME', 120),
+
+ 'expire_on_close' => false,
+
+ /*
+ |--------------------------------------------------------------------------
+ | Session Encryption
+ |--------------------------------------------------------------------------
+ |
+ | This option allows you to easily specify that all of your session data
+ | should be encrypted before it is stored. All encryption will be run
+ | automatically by Laravel and you can use the Session like normal.
+ |
+ */
+
+ 'encrypt' => false,
+
+ /*
+ |--------------------------------------------------------------------------
+ | Session File Location
+ |--------------------------------------------------------------------------
+ |
+ | When using the native session driver, we need a location where session
+ | files may be stored. A default has been set for you but a different
+ | location may be specified. This is only needed for file sessions.
+ |
+ */
+
+ 'files' => storage_path('framework/sessions'),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Session Database Connection
+ |--------------------------------------------------------------------------
+ |
+ | When using the "database" or "redis" session drivers, you may specify a
+ | connection that should be used to manage these sessions. This should
+ | correspond to a connection in your database configuration options.
+ |
+ */
+
+ 'connection' => env('SESSION_CONNECTION', null),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Session Database Table
+ |--------------------------------------------------------------------------
+ |
+ | When using the "database" session driver, you may specify the table we
+ | should use to manage the sessions. Of course, a sensible default is
+ | provided for you; however, you are free to change this as needed.
+ |
+ */
+
+ 'table' => 'sessions',
+
+ /*
+ |--------------------------------------------------------------------------
+ | Session Cache Store
+ |--------------------------------------------------------------------------
+ |
+ | When using the "apc", "memcached", or "dynamodb" session drivers you may
+ | list a cache store that should be used for these sessions. This value
+ | must match with one of the application's configured cache "stores".
+ |
+ */
+
+ 'store' => env('SESSION_STORE', null),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Session Sweeping Lottery
+ |--------------------------------------------------------------------------
+ |
+ | Some session drivers must manually sweep their storage location to get
+ | rid of old sessions from storage. Here are the chances that it will
+ | happen on a given request. By default, the odds are 2 out of 100.
+ |
+ */
+
+ 'lottery' => [2, 100],
+
+ /*
+ |--------------------------------------------------------------------------
+ | Session Cookie Name
+ |--------------------------------------------------------------------------
+ |
+ | Here you may change the name of the cookie used to identify a session
+ | instance by ID. The name specified here will get used every time a
+ | new session cookie is created by the framework for every driver.
+ |
+ */
+
+ 'cookie' => env(
+ 'SESSION_COOKIE',
+ Str::slug(env('APP_NAME', 'laravel'), '_').'_session'
+ ),
+
+ /*
+ |--------------------------------------------------------------------------
+ | Session Cookie Path
+ |--------------------------------------------------------------------------
+ |
+ | The session cookie path determines the path for which the cookie will
+ | be regarded as available. Typically, this will be the root path of
+ | your application but you are free to change this when necessary.
+ |
+ */
+
+ 'path' => '/',
+
+ /*
+ |--------------------------------------------------------------------------
+ | Session Cookie Domain
+ |--------------------------------------------------------------------------
+ |
+ | Here you may change the domain of the cookie used to identify a session
+ | in your application. This will determine which domains the cookie is
+ | available to in your application. A sensible default has been set.
+ |
+ */
+
+ 'domain' => env('SESSION_DOMAIN', null),
+
+ /*
+ |--------------------------------------------------------------------------
+ | HTTPS Only Cookies
+ |--------------------------------------------------------------------------
+ |
+ | By setting this option to true, session cookies will only be sent back
+ | to the server if the browser has a HTTPS connection. This will keep
+ | the cookie from being sent to you if it can not be done securely.
+ |
+ */
+
+ 'secure' => env('SESSION_SECURE_COOKIE'),
+
+ /*
+ |--------------------------------------------------------------------------
+ | HTTP Access Only
+ |--------------------------------------------------------------------------
+ |
+ | Setting this value to true will prevent JavaScript from accessing the
+ | value of the cookie and the cookie will only be accessible through
+ | the HTTP protocol. You are free to modify this option if needed.
+ |
+ */
+
+ 'http_only' => true,
+
+ /*
+ |--------------------------------------------------------------------------
+ | Same-Site Cookies
+ |--------------------------------------------------------------------------
+ |
+ | This option determines how your cookies behave when cross-site requests
+ | take place, and can be used to mitigate CSRF attacks. By default, we
+ | do not enable this as other CSRF protection services are in place.
+ |
+ | Supported: "lax", "strict", "none", null
+ |
+ */
+
+ 'same_site' => 'lax',
+
+];
diff --git a/examples/digitalidentity/config/view.php b/examples/digitalidentity/config/view.php
new file mode 100644
index 00000000..22b8a18d
--- /dev/null
+++ b/examples/digitalidentity/config/view.php
@@ -0,0 +1,36 @@
+ [
+ resource_path('views'),
+ ],
+
+ /*
+ |--------------------------------------------------------------------------
+ | Compiled View Path
+ |--------------------------------------------------------------------------
+ |
+ | This option determines where all the compiled Blade templates will be
+ | stored for your application. Typically, this is within the storage
+ | directory. However, as usual, you are free to change this value.
+ |
+ */
+
+ 'compiled' => env(
+ 'VIEW_COMPILED_PATH',
+ realpath(storage_path('framework/views'))
+ ),
+
+];
diff --git a/examples/digitalidentity/config/yoti.php b/examples/digitalidentity/config/yoti.php
new file mode 100644
index 00000000..68e2c32b
--- /dev/null
+++ b/examples/digitalidentity/config/yoti.php
@@ -0,0 +1,9 @@
+ env('YOTI_SDK_ID'),
+ 'scenario.id' => env('YOTI_SCENARIO_ID'),
+ 'pem.file.path' => (function($filePath) {
+ return strpos($filePath, '/') === 0 ? $filePath : base_path($filePath);
+ })(env('YOTI_KEY_FILE_PATH')),
+];
diff --git a/examples/digitalidentity/docker-compose.yml b/examples/digitalidentity/docker-compose.yml
new file mode 100644
index 00000000..7b5d8840
--- /dev/null
+++ b/examples/digitalidentity/docker-compose.yml
@@ -0,0 +1,25 @@
+version: '3'
+
+services:
+ web:
+ build: ../docker
+ ports:
+ - "4002:443"
+ volumes:
+ - ./:/usr/share/nginx/html
+ links:
+ - php
+
+ php:
+ build:
+ context: ../docker
+ dockerfile: php.dockerfile
+ volumes:
+ - ./:/usr/share/nginx/html
+
+ composer:
+ image: composer
+ volumes:
+ - ../../:/usr/share/yoti-php-sdk
+ working_dir: /usr/share/yoti-php-sdk/examples/digitalidentity
+ command: update-local
diff --git a/examples/digitalidentity/keys/.gitignore b/examples/digitalidentity/keys/.gitignore
new file mode 100644
index 00000000..d6b7ef32
--- /dev/null
+++ b/examples/digitalidentity/keys/.gitignore
@@ -0,0 +1,2 @@
+*
+!.gitignore
diff --git a/examples/digitalidentity/public/.htaccess b/examples/digitalidentity/public/.htaccess
new file mode 100644
index 00000000..3aec5e27
--- /dev/null
+++ b/examples/digitalidentity/public/.htaccess
@@ -0,0 +1,21 @@
+
Created Session
+Id: {{$sessionId}}
+Status: {{$sessionStatus}}
+Expiry: {{$sessionExpiry}}
+Created Session QR Code
+Id: {{$createdQrCodeId}}
+URI: {{$createdQrCodeUri}}
+Fetched Session QR Code
+Expiry: {{$fetchedQrCodeExpiry}}
+Redirect URI: {{$fetchedQrCodeRedirectUri}}
+Session ID: {{$fetchedQrCodeSessionId}}
+Session Status: {{$fetchedQrCodeSessionStatus}}
+Session Expiry: {{$fetchedQrCodeSessionExpiry}}
+Fetched Session
+Id: {{$fetchedSessionId}}
+Created: {{$fetchedSessionCreated}}
+Updated: {{$fetchedSessionUpdated}}
+Expiry: {{$fetchedSessionExpiry}}
+Status: {{$fetchedSessionStatus}}
+ +{{ $key }} | +{{ $value }} | +
Check Type | +{{ $ageVerification->getCheckType() }} | +
Age | +{{ $ageVerification->getAge() }} | +
Result | +{{ $ageVerification->getResult() ? 'true' : 'false' }} | +
Type | +{{ $documentDetails->getType() }} | +
Issuing Country | +{{ $documentDetails->getIssuingCountry() }} | +
Document Number | +{{ $documentDetails->getDocumentNumber() }} | +
Expiration Date | +{{ $documentDetails->getExpirationDate()->format('d-m-Y') }} | +
+ {{ $key }}+ |
+
{{ $key2 }} {{ $value2 }} |
+
{{ $data }} {{ $view }} |
+
{{ $name }} {{ $result }} |
+