├── LICENSE.md ├── composer.json ├── phpstan.neon ├── rector.php └── src ├── Client └── HttpClientService.php ├── Exception ├── SatimInvalidArgumentException.php ├── SatimInvalidCredentials.php ├── SatimInvalidDataException.php ├── SatimMissingDataException.php ├── SatimUnexpectedResponseException.php └── SatimUnexpectedValueException.php ├── Satim.php ├── SatimConfig.php ├── SatimPayHelper.php └── SatimStatusChecker.php /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiteurStudio/satim-php/HEAD/LICENSE.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiteurStudio/satim-php/HEAD/composer.json -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiteurStudio/satim-php/HEAD/phpstan.neon -------------------------------------------------------------------------------- /rector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiteurStudio/satim-php/HEAD/rector.php -------------------------------------------------------------------------------- /src/Client/HttpClientService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiteurStudio/satim-php/HEAD/src/Client/HttpClientService.php -------------------------------------------------------------------------------- /src/Exception/SatimInvalidArgumentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiteurStudio/satim-php/HEAD/src/Exception/SatimInvalidArgumentException.php -------------------------------------------------------------------------------- /src/Exception/SatimInvalidCredentials.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiteurStudio/satim-php/HEAD/src/Exception/SatimInvalidCredentials.php -------------------------------------------------------------------------------- /src/Exception/SatimInvalidDataException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiteurStudio/satim-php/HEAD/src/Exception/SatimInvalidDataException.php -------------------------------------------------------------------------------- /src/Exception/SatimMissingDataException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiteurStudio/satim-php/HEAD/src/Exception/SatimMissingDataException.php -------------------------------------------------------------------------------- /src/Exception/SatimUnexpectedResponseException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiteurStudio/satim-php/HEAD/src/Exception/SatimUnexpectedResponseException.php -------------------------------------------------------------------------------- /src/Exception/SatimUnexpectedValueException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiteurStudio/satim-php/HEAD/src/Exception/SatimUnexpectedValueException.php -------------------------------------------------------------------------------- /src/Satim.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiteurStudio/satim-php/HEAD/src/Satim.php -------------------------------------------------------------------------------- /src/SatimConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiteurStudio/satim-php/HEAD/src/SatimConfig.php -------------------------------------------------------------------------------- /src/SatimPayHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiteurStudio/satim-php/HEAD/src/SatimPayHelper.php -------------------------------------------------------------------------------- /src/SatimStatusChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PiteurStudio/satim-php/HEAD/src/SatimStatusChecker.php --------------------------------------------------------------------------------