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
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,4 @@ composer.phar
# PHPUnit cache
.phpunit.result.cache

# Generated intermediate file
openapi-converted.json
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ A PHP client library for the PAY.JP v2 API. This SDK provides a convenient way t
This PHP package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:

- API version: `2.0.0`
- Package version: `1.0.8`
- Package version: `1.0.9`
- Generator version: `7.14.0`
- Build package: `org.openapitools.codegen.languages.PhpClientCodegen`

Expand Down Expand Up @@ -306,6 +306,6 @@ vendor/bin/phpunit
This PHP package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:

- API version: `2.0.0`
- Package version: `1.0.8`
- Package version: `1.0.9`
- Generator version: `7.14.0`
- Build package: `org.openapitools.codegen.languages.PhpClientCodegen`
6 changes: 3 additions & 3 deletions lib/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ class Configuration
*
* @var string
*/
protected $userAgent = 'payjp/payjpv2 PHPBindings/1.0.8';
protected $userAgent = 'payjp/payjpv2 PHPBindings/1.0.9';

/**
* Debug switch (default set to false)
Expand Down Expand Up @@ -339,7 +339,7 @@ public function getUserAgent(): string
public static function buildClientUserAgent(): string
{
$uaInfo = [
'bindings_version' => '1.0.8',
'bindings_version' => '1.0.9',
'lang' => 'php',
'lang_version' => PHP_VERSION,
'publisher' => 'payjp',
Expand Down Expand Up @@ -458,7 +458,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: 2.0.0' . PHP_EOL;
$report .= ' SDK Package Version: 1.0.8' . PHP_EOL;
$report .= ' SDK Package Version: 1.0.9' . PHP_EOL;
$report .= ' Temp Folder Path: ' . self::getDefaultConfiguration()->getTempFolderPath() . PHP_EOL;

return $report;
Expand Down
Loading