Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ jobs:
github.repository_owner == 'onfido' &&
(github.event_name == 'pull_request' ||
github.event_name == 'release' ||
github.event_name == 'workflow_dispatch') }}
github.event_name == 'workflow_dispatch' ||
github.event_name == 'schedule') }}
run: |
vendor/bin/phpunit
env:
Expand All @@ -57,7 +58,8 @@ jobs:
github.repository_owner == 'onfido' &&
(github.event_name == 'pull_request' ||
github.event_name == 'release' ||
github.event_name == 'workflow_dispatch') }}
github.event_name == 'workflow_dispatch' ||
github.event_name == 'schedule') }}
run: |
vendor/bin/phpunit
env:
Expand Down
8 changes: 4 additions & 4 deletions .release.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"source": {
"repo_url": "https://github.com/onfido/onfido-openapi-spec",
"short_sha": "6a36202",
"long_sha": "6a362029f0a58437e8be7185303ef14d3f342feb",
"version": "v6.1.0"
"short_sha": "d9d749d",
"long_sha": "d9d749dfbd3873524400efe236f7d398bb9e948e",
"version": "v6.2.0"
},
"release": "v10.2.0"
"release": "v10.3.0"
}
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "onfido/onfido-php",
"version": "10.2.0",
"version": "10.3.0",
"description": "The Onfido Public API (v3.6)",
"keywords": [
"openapitools",
Expand Down
2 changes: 1 addition & 1 deletion composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3,401 changes: 2,475 additions & 926 deletions lib/Api/DefaultApi.php

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions lib/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ class Configuration
*
* @var string
*/
protected $userAgent = 'onfido-php/10.2.0';
protected $userAgent = 'onfido-php/10.3.0';

/**
* Debug switch (default set to false)
Expand Down Expand Up @@ -465,7 +465,7 @@ public static function toDebugReport()
$report .= ' OS: ' . php_uname() . PHP_EOL;
$report .= ' PHP Version: ' . PHP_VERSION . PHP_EOL;
$report .= ' The version of the OpenAPI document: v3.6' . PHP_EOL;
$report .= ' SDK Package Version: 10.2.0' . PHP_EOL;
$report .= ' SDK Package Version: 10.3.0' . PHP_EOL;
$report .= ' Temp Folder Path: ' . self::getDefaultConfiguration()->getTempFolderPath() . PHP_EOL;

return $report;
Expand Down
Loading
Loading