├── README.md ├── composer.json └── src ├── Adapter ├── AdapterInterface.php ├── BuzzAdapter.php ├── BuzzAsaasAuthListener.php ├── GuzzleAdapter.php └── GuzzleHttpAdapter.php ├── Api ├── AbstractApi.php ├── City.php ├── Customer.php ├── Notification.php ├── Payment.php └── Subscription.php ├── Asaas.php ├── Entity ├── AbstractEntity.php ├── City.php ├── Customer.php ├── Meta.php ├── Notification.php ├── Payment.php └── Subscription.php └── Exception ├── ExceptionInterface.php ├── HttpException.php └── InvalidRecordException.php /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softr/asaas-php-sdk/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softr/asaas-php-sdk/HEAD/composer.json -------------------------------------------------------------------------------- /src/Adapter/AdapterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softr/asaas-php-sdk/HEAD/src/Adapter/AdapterInterface.php -------------------------------------------------------------------------------- /src/Adapter/BuzzAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softr/asaas-php-sdk/HEAD/src/Adapter/BuzzAdapter.php -------------------------------------------------------------------------------- /src/Adapter/BuzzAsaasAuthListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softr/asaas-php-sdk/HEAD/src/Adapter/BuzzAsaasAuthListener.php -------------------------------------------------------------------------------- /src/Adapter/GuzzleAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softr/asaas-php-sdk/HEAD/src/Adapter/GuzzleAdapter.php -------------------------------------------------------------------------------- /src/Adapter/GuzzleHttpAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softr/asaas-php-sdk/HEAD/src/Adapter/GuzzleHttpAdapter.php -------------------------------------------------------------------------------- /src/Api/AbstractApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softr/asaas-php-sdk/HEAD/src/Api/AbstractApi.php -------------------------------------------------------------------------------- /src/Api/City.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softr/asaas-php-sdk/HEAD/src/Api/City.php -------------------------------------------------------------------------------- /src/Api/Customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softr/asaas-php-sdk/HEAD/src/Api/Customer.php -------------------------------------------------------------------------------- /src/Api/Notification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softr/asaas-php-sdk/HEAD/src/Api/Notification.php -------------------------------------------------------------------------------- /src/Api/Payment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softr/asaas-php-sdk/HEAD/src/Api/Payment.php -------------------------------------------------------------------------------- /src/Api/Subscription.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softr/asaas-php-sdk/HEAD/src/Api/Subscription.php -------------------------------------------------------------------------------- /src/Asaas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softr/asaas-php-sdk/HEAD/src/Asaas.php -------------------------------------------------------------------------------- /src/Entity/AbstractEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softr/asaas-php-sdk/HEAD/src/Entity/AbstractEntity.php -------------------------------------------------------------------------------- /src/Entity/City.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softr/asaas-php-sdk/HEAD/src/Entity/City.php -------------------------------------------------------------------------------- /src/Entity/Customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softr/asaas-php-sdk/HEAD/src/Entity/Customer.php -------------------------------------------------------------------------------- /src/Entity/Meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softr/asaas-php-sdk/HEAD/src/Entity/Meta.php -------------------------------------------------------------------------------- /src/Entity/Notification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softr/asaas-php-sdk/HEAD/src/Entity/Notification.php -------------------------------------------------------------------------------- /src/Entity/Payment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softr/asaas-php-sdk/HEAD/src/Entity/Payment.php -------------------------------------------------------------------------------- /src/Entity/Subscription.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softr/asaas-php-sdk/HEAD/src/Entity/Subscription.php -------------------------------------------------------------------------------- /src/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softr/asaas-php-sdk/HEAD/src/Exception/ExceptionInterface.php -------------------------------------------------------------------------------- /src/Exception/HttpException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softr/asaas-php-sdk/HEAD/src/Exception/HttpException.php -------------------------------------------------------------------------------- /src/Exception/InvalidRecordException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/softr/asaas-php-sdk/HEAD/src/Exception/InvalidRecordException.php --------------------------------------------------------------------------------