├── Call ├── ApiCallInterface.php ├── CurlCall.php ├── HttpDeleteJson.php ├── HttpGetHtml.php ├── HttpGetJson.php ├── HttpGetXML.php ├── HttpPost.php ├── HttpPostJson.php ├── HttpPostJsonBody.php ├── HttpPutJson.php ├── HttpPutJsonBody.php ├── HttpSoapCall.php └── SoapCall.php ├── Caller ├── ApiCallerInterface.php └── LoggingApiCaller.php ├── DataCollector └── ApiCallDataCollector.php ├── DependencyInjection └── LswApiCallerExtension.php ├── Helper └── Curl.php ├── LICENSE ├── Logger ├── ApiCallLogger.php └── ApiCallLoggerInterface.php ├── LswApiCallerBundle.php ├── README.md ├── Resources ├── config │ ├── config.yml │ └── services.yml └── views │ └── Collector │ └── api.html.twig └── composer.json /Call/ApiCallInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaseweb/LswApiCallerBundle/HEAD/Call/ApiCallInterface.php -------------------------------------------------------------------------------- /Call/CurlCall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaseweb/LswApiCallerBundle/HEAD/Call/CurlCall.php -------------------------------------------------------------------------------- /Call/HttpDeleteJson.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaseweb/LswApiCallerBundle/HEAD/Call/HttpDeleteJson.php -------------------------------------------------------------------------------- /Call/HttpGetHtml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaseweb/LswApiCallerBundle/HEAD/Call/HttpGetHtml.php -------------------------------------------------------------------------------- /Call/HttpGetJson.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaseweb/LswApiCallerBundle/HEAD/Call/HttpGetJson.php -------------------------------------------------------------------------------- /Call/HttpGetXML.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaseweb/LswApiCallerBundle/HEAD/Call/HttpGetXML.php -------------------------------------------------------------------------------- /Call/HttpPost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaseweb/LswApiCallerBundle/HEAD/Call/HttpPost.php -------------------------------------------------------------------------------- /Call/HttpPostJson.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaseweb/LswApiCallerBundle/HEAD/Call/HttpPostJson.php -------------------------------------------------------------------------------- /Call/HttpPostJsonBody.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaseweb/LswApiCallerBundle/HEAD/Call/HttpPostJsonBody.php -------------------------------------------------------------------------------- /Call/HttpPutJson.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaseweb/LswApiCallerBundle/HEAD/Call/HttpPutJson.php -------------------------------------------------------------------------------- /Call/HttpPutJsonBody.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaseweb/LswApiCallerBundle/HEAD/Call/HttpPutJsonBody.php -------------------------------------------------------------------------------- /Call/HttpSoapCall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaseweb/LswApiCallerBundle/HEAD/Call/HttpSoapCall.php -------------------------------------------------------------------------------- /Call/SoapCall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaseweb/LswApiCallerBundle/HEAD/Call/SoapCall.php -------------------------------------------------------------------------------- /Caller/ApiCallerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaseweb/LswApiCallerBundle/HEAD/Caller/ApiCallerInterface.php -------------------------------------------------------------------------------- /Caller/LoggingApiCaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaseweb/LswApiCallerBundle/HEAD/Caller/LoggingApiCaller.php -------------------------------------------------------------------------------- /DataCollector/ApiCallDataCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaseweb/LswApiCallerBundle/HEAD/DataCollector/ApiCallDataCollector.php -------------------------------------------------------------------------------- /DependencyInjection/LswApiCallerExtension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaseweb/LswApiCallerBundle/HEAD/DependencyInjection/LswApiCallerExtension.php -------------------------------------------------------------------------------- /Helper/Curl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaseweb/LswApiCallerBundle/HEAD/Helper/Curl.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaseweb/LswApiCallerBundle/HEAD/LICENSE -------------------------------------------------------------------------------- /Logger/ApiCallLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaseweb/LswApiCallerBundle/HEAD/Logger/ApiCallLogger.php -------------------------------------------------------------------------------- /Logger/ApiCallLoggerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaseweb/LswApiCallerBundle/HEAD/Logger/ApiCallLoggerInterface.php -------------------------------------------------------------------------------- /LswApiCallerBundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaseweb/LswApiCallerBundle/HEAD/LswApiCallerBundle.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaseweb/LswApiCallerBundle/HEAD/README.md -------------------------------------------------------------------------------- /Resources/config/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaseweb/LswApiCallerBundle/HEAD/Resources/config/config.yml -------------------------------------------------------------------------------- /Resources/config/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaseweb/LswApiCallerBundle/HEAD/Resources/config/services.yml -------------------------------------------------------------------------------- /Resources/views/Collector/api.html.twig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaseweb/LswApiCallerBundle/HEAD/Resources/views/Collector/api.html.twig -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leaseweb/LswApiCallerBundle/HEAD/composer.json --------------------------------------------------------------------------------