├── .github └── workflows │ └── test.yml ├── .gitignore ├── .php-cs-fixer.dist.php ├── CHANGELOG.md ├── LICENSE ├── README.md ├── RequestExample.md ├── VERSION ├── composer.json ├── init.php ├── lib ├── Account.php ├── ApiRequestor.php ├── ApiResource.php ├── ApplicationUrl.php ├── AttachedObject.php ├── Balance.php ├── Card.php ├── Charge.php ├── Collection.php ├── Customer.php ├── Error │ ├── Api.php │ ├── ApiConnection.php │ ├── Authentication.php │ ├── Base.php │ ├── Card.php │ ├── InvalidRequest.php │ └── RateLimit.php ├── Event.php ├── ExternalAccount.php ├── HttpClient │ ├── ClientInterface.php │ └── CurlClient.php ├── Logger │ ├── DefaultLogger.php │ └── LoggerInterface.php ├── Payjp.php ├── PayjpObject.php ├── Plan.php ├── Statement.php ├── StatementUrl.php ├── Subscription.php ├── Tenant.php ├── TenantTransfer.php ├── Term.php ├── ThreeDSecureRequest.php ├── Token.php ├── Transfer.php └── Util │ ├── RequestOptions.php │ ├── Set.php │ └── Util.php ├── phpunit.no_autoload.xml ├── phpunit.xml ├── scenario ├── ChargeForPlatform.php ├── README.md ├── TenantForPlatform.php └── TenantTransfer.php └── tests ├── AccountTest.php ├── ApiRequestorTest.php ├── AuthenticationErrorTest.php ├── BalanceTest.php ├── CardErrorTest.php ├── ChargeTest.php ├── CurlClientTest.php ├── CustomerTest.php ├── ErrorTest.php ├── EventTest.php ├── InvalidRequestErrorTest.php ├── PayjpObjectTest.php ├── PayjpTest.php ├── PlanTest.php ├── RequestOptionsTest.php ├── StatementTest.php ├── SubscriptionTest.php ├── TenantTransferTest.php ├── TermTest.php ├── TestCase.php ├── ThreeDSecureRequestTest.php ├── TokenTest.php ├── TransferTest.php ├── UtilTest.php ├── bootstrap.no_autoload.php └── bootstrap.php /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payjp/payjp-php/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payjp/payjp-php/HEAD/.gitignore -------------------------------------------------------------------------------- /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payjp/payjp-php/HEAD/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payjp/payjp-php/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payjp/payjp-php/HEAD/README.md -------------------------------------------------------------------------------- /RequestExample.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payjp/payjp-php/HEAD/RequestExample.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.8.0 2 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payjp/payjp-php/HEAD/composer.json -------------------------------------------------------------------------------- /init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payjp/payjp-php/HEAD/init.php -------------------------------------------------------------------------------- /lib/Account.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payjp/payjp-php/HEAD/lib/Account.php -------------------------------------------------------------------------------- /lib/ApiRequestor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payjp/payjp-php/HEAD/lib/ApiRequestor.php -------------------------------------------------------------------------------- /lib/ApiResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payjp/payjp-php/HEAD/lib/ApiResource.php -------------------------------------------------------------------------------- /lib/ApplicationUrl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payjp/payjp-php/HEAD/lib/ApplicationUrl.php -------------------------------------------------------------------------------- /lib/AttachedObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payjp/payjp-php/HEAD/lib/AttachedObject.php -------------------------------------------------------------------------------- /lib/Balance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/payjp/payjp-php/HEAD/lib/Balance.php -------------------------------------------------------------------------------- /lib/Card.php: -------------------------------------------------------------------------------- 1 |