├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── gen.yml ├── homepage.jpg ├── init ├── lib └── PaypalPayoutsSDK │ ├── Core │ ├── AccessToken.php │ ├── AccessTokenRequest.php │ ├── AuthorizationInjector.php │ ├── FPTIInstrumentationInjector.php │ ├── GzipInjector.php │ ├── PayPalEnvironment.php │ ├── PayPalHttpClient.php │ ├── ProductionEnvironment.php │ ├── RefreshTokenRequest.php │ ├── SandboxEnvironment.php │ ├── UserAgent.php │ └── Version.php │ └── Payouts │ ├── PayoutsGetRequest.php │ ├── PayoutsItemCancelRequest.php │ ├── PayoutsItemGetRequest.php │ └── PayoutsPostRequest.php ├── phpunit.xml ├── samples ├── CreatePayoutSample.php ├── GetPayoutSample.php ├── ItemCancelSample.php ├── ItemGetSample.php └── PayPalClient.php └── tests ├── Payouts ├── PayoutsGetTest.php ├── PayoutsItemCancelTest.php ├── PayoutsItemGetTest.php └── PayoutsPostTest.php └── TestHarness.php /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/Payouts-PHP-SDK/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/Payouts-PHP-SDK/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/Payouts-PHP-SDK/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/Payouts-PHP-SDK/HEAD/composer.json -------------------------------------------------------------------------------- /gen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/Payouts-PHP-SDK/HEAD/gen.yml -------------------------------------------------------------------------------- /homepage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/Payouts-PHP-SDK/HEAD/homepage.jpg -------------------------------------------------------------------------------- /init: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/PaypalPayoutsSDK/Core/AccessToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/Payouts-PHP-SDK/HEAD/lib/PaypalPayoutsSDK/Core/AccessToken.php -------------------------------------------------------------------------------- /lib/PaypalPayoutsSDK/Core/AccessTokenRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/Payouts-PHP-SDK/HEAD/lib/PaypalPayoutsSDK/Core/AccessTokenRequest.php -------------------------------------------------------------------------------- /lib/PaypalPayoutsSDK/Core/AuthorizationInjector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/Payouts-PHP-SDK/HEAD/lib/PaypalPayoutsSDK/Core/AuthorizationInjector.php -------------------------------------------------------------------------------- /lib/PaypalPayoutsSDK/Core/FPTIInstrumentationInjector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/Payouts-PHP-SDK/HEAD/lib/PaypalPayoutsSDK/Core/FPTIInstrumentationInjector.php -------------------------------------------------------------------------------- /lib/PaypalPayoutsSDK/Core/GzipInjector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/Payouts-PHP-SDK/HEAD/lib/PaypalPayoutsSDK/Core/GzipInjector.php -------------------------------------------------------------------------------- /lib/PaypalPayoutsSDK/Core/PayPalEnvironment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/Payouts-PHP-SDK/HEAD/lib/PaypalPayoutsSDK/Core/PayPalEnvironment.php -------------------------------------------------------------------------------- /lib/PaypalPayoutsSDK/Core/PayPalHttpClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/Payouts-PHP-SDK/HEAD/lib/PaypalPayoutsSDK/Core/PayPalHttpClient.php -------------------------------------------------------------------------------- /lib/PaypalPayoutsSDK/Core/ProductionEnvironment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/Payouts-PHP-SDK/HEAD/lib/PaypalPayoutsSDK/Core/ProductionEnvironment.php -------------------------------------------------------------------------------- /lib/PaypalPayoutsSDK/Core/RefreshTokenRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/Payouts-PHP-SDK/HEAD/lib/PaypalPayoutsSDK/Core/RefreshTokenRequest.php -------------------------------------------------------------------------------- /lib/PaypalPayoutsSDK/Core/SandboxEnvironment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/Payouts-PHP-SDK/HEAD/lib/PaypalPayoutsSDK/Core/SandboxEnvironment.php -------------------------------------------------------------------------------- /lib/PaypalPayoutsSDK/Core/UserAgent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/Payouts-PHP-SDK/HEAD/lib/PaypalPayoutsSDK/Core/UserAgent.php -------------------------------------------------------------------------------- /lib/PaypalPayoutsSDK/Core/Version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/Payouts-PHP-SDK/HEAD/lib/PaypalPayoutsSDK/Core/Version.php -------------------------------------------------------------------------------- /lib/PaypalPayoutsSDK/Payouts/PayoutsGetRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/Payouts-PHP-SDK/HEAD/lib/PaypalPayoutsSDK/Payouts/PayoutsGetRequest.php -------------------------------------------------------------------------------- /lib/PaypalPayoutsSDK/Payouts/PayoutsItemCancelRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/Payouts-PHP-SDK/HEAD/lib/PaypalPayoutsSDK/Payouts/PayoutsItemCancelRequest.php -------------------------------------------------------------------------------- /lib/PaypalPayoutsSDK/Payouts/PayoutsItemGetRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/Payouts-PHP-SDK/HEAD/lib/PaypalPayoutsSDK/Payouts/PayoutsItemGetRequest.php -------------------------------------------------------------------------------- /lib/PaypalPayoutsSDK/Payouts/PayoutsPostRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/Payouts-PHP-SDK/HEAD/lib/PaypalPayoutsSDK/Payouts/PayoutsPostRequest.php -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/Payouts-PHP-SDK/HEAD/phpunit.xml -------------------------------------------------------------------------------- /samples/CreatePayoutSample.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/Payouts-PHP-SDK/HEAD/samples/CreatePayoutSample.php -------------------------------------------------------------------------------- /samples/GetPayoutSample.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/Payouts-PHP-SDK/HEAD/samples/GetPayoutSample.php -------------------------------------------------------------------------------- /samples/ItemCancelSample.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/Payouts-PHP-SDK/HEAD/samples/ItemCancelSample.php -------------------------------------------------------------------------------- /samples/ItemGetSample.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/Payouts-PHP-SDK/HEAD/samples/ItemGetSample.php -------------------------------------------------------------------------------- /samples/PayPalClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/Payouts-PHP-SDK/HEAD/samples/PayPalClient.php -------------------------------------------------------------------------------- /tests/Payouts/PayoutsGetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/Payouts-PHP-SDK/HEAD/tests/Payouts/PayoutsGetTest.php -------------------------------------------------------------------------------- /tests/Payouts/PayoutsItemCancelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/Payouts-PHP-SDK/HEAD/tests/Payouts/PayoutsItemCancelTest.php -------------------------------------------------------------------------------- /tests/Payouts/PayoutsItemGetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/Payouts-PHP-SDK/HEAD/tests/Payouts/PayoutsItemGetTest.php -------------------------------------------------------------------------------- /tests/Payouts/PayoutsPostTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/Payouts-PHP-SDK/HEAD/tests/Payouts/PayoutsPostTest.php -------------------------------------------------------------------------------- /tests/TestHarness.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/Payouts-PHP-SDK/HEAD/tests/TestHarness.php --------------------------------------------------------------------------------