├── CHANGELOG.md ├── LICENSE ├── README.md ├── UPGRADE.md ├── composer.json ├── doc ├── adapters.md ├── configuration.md ├── docker.md ├── events.md ├── installation.md ├── psr-7.md └── usage.md └── src ├── AbstractCurlHttpAdapter.php ├── AbstractHttpAdapter.php ├── AbstractStreamHttpAdapter.php ├── Asset └── AbstractUninstantiableAsset.php ├── BuzzHttpAdapter.php ├── CakeHttpAdapter.php ├── Configuration.php ├── ConfigurationInterface.php ├── CurlHttpAdapter.php ├── Event ├── AbstractEvent.php ├── BasicAuth │ ├── BasicAuth.php │ └── BasicAuthInterface.php ├── Cache │ ├── Adapter │ │ ├── CacheAdapterInterface.php │ │ ├── DoctrineCacheAdapter.php │ │ └── StashCacheAdapter.php │ ├── Cache.php │ └── CacheInterface.php ├── Cookie │ ├── Cookie.php │ ├── CookieFactory.php │ ├── CookieFactoryInterface.php │ ├── CookieInterface.php │ └── Jar │ │ ├── AbstractPersistentCookieJar.php │ │ ├── CookieJar.php │ │ ├── CookieJarInterface.php │ │ ├── FileCookieJar.php │ │ ├── PersistentCookieJarInterface.php │ │ └── SessionCookieJar.php ├── Events.php ├── Formatter │ ├── Formatter.php │ └── FormatterInterface.php ├── History │ ├── Journal.php │ ├── JournalEntry.php │ ├── JournalEntryFactory.php │ ├── JournalEntryFactoryInterface.php │ ├── JournalEntryInterface.php │ └── JournalInterface.php ├── MultiRequestCreatedEvent.php ├── MultiRequestErroredEvent.php ├── MultiRequestSentEvent.php ├── Redirect │ ├── Redirect.php │ └── RedirectInterface.php ├── RequestCreatedEvent.php ├── RequestErroredEvent.php ├── RequestSentEvent.php ├── Retry │ ├── Retry.php │ ├── RetryInterface.php │ └── Strategy │ │ ├── AbstractDelayedRetryStrategy.php │ │ ├── AbstractRetryStrategyChain.php │ │ ├── CallbackRetryStrategy.php │ │ ├── ConstantDelayedRetryStrategy.php │ │ ├── ExponentialDelayedRetryStrategy.php │ │ ├── LimitedRetryStrategy.php │ │ ├── LinearDelayedRetryStrategy.php │ │ ├── RetryStrategyChainInterface.php │ │ └── RetryStrategyInterface.php ├── StatusCode │ ├── StatusCode.php │ └── StatusCodeInterface.php ├── Subscriber │ ├── AbstractFormatterSubscriber.php │ ├── AbstractTimerSubscriber.php │ ├── BasicAuthSubscriber.php │ ├── CacheSubscriber.php │ ├── CookieSubscriber.php │ ├── HistorySubscriber.php │ ├── LoggerSubscriber.php │ ├── RedirectSubscriber.php │ ├── RetrySubscriber.php │ ├── StatusCodeSubscriber.php │ └── StopwatchSubscriber.php └── Timer │ ├── Timer.php │ └── TimerInterface.php ├── EventDispatcherHttpAdapter.php ├── Extractor ├── ProtocolVersionExtractor.php ├── StatusCodeExtractor.php └── StatusLineExtractor.php ├── FileGetContentsHttpAdapter.php ├── FopenHttpAdapter.php ├── Guzzle3HttpAdapter.php ├── Guzzle4HttpAdapter.php ├── Guzzle5HttpAdapter.php ├── Guzzle6HttpAdapter.php ├── HttpAdapterException.php ├── HttpAdapterFactory.php ├── HttpAdapterInterface.php ├── HttpAdapterTrait.php ├── HttpfulHttpAdapter.php ├── Message ├── InternalRequest.php ├── InternalRequestInterface.php ├── MessageFactory.php ├── MessageFactoryInterface.php ├── MessageInterface.php ├── MessageTrait.php ├── Request.php ├── RequestInterface.php ├── Response.php └── ResponseInterface.php ├── MockHttpAdapter.php ├── MultiHttpAdapterException.php ├── Normalizer ├── BodyNormalizer.php └── HeadersNormalizer.php ├── Parser ├── CookieParser.php └── HeadersParser.php ├── PeclHttpAdapter.php ├── PsrHttpAdapterDecorator.php ├── PsrHttpAdapterInterface.php ├── ReactHttpAdapter.php ├── RequestsHttpAdapter.php ├── SocketHttpAdapter.php ├── StopwatchHttpAdapter.php ├── Zend1HttpAdapter.php └── Zend2HttpAdapter.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/README.md -------------------------------------------------------------------------------- /UPGRADE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/UPGRADE.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/composer.json -------------------------------------------------------------------------------- /doc/adapters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/doc/adapters.md -------------------------------------------------------------------------------- /doc/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/doc/configuration.md -------------------------------------------------------------------------------- /doc/docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/doc/docker.md -------------------------------------------------------------------------------- /doc/events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/doc/events.md -------------------------------------------------------------------------------- /doc/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/doc/installation.md -------------------------------------------------------------------------------- /doc/psr-7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/doc/psr-7.md -------------------------------------------------------------------------------- /doc/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/doc/usage.md -------------------------------------------------------------------------------- /src/AbstractCurlHttpAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/AbstractCurlHttpAdapter.php -------------------------------------------------------------------------------- /src/AbstractHttpAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/AbstractHttpAdapter.php -------------------------------------------------------------------------------- /src/AbstractStreamHttpAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/AbstractStreamHttpAdapter.php -------------------------------------------------------------------------------- /src/Asset/AbstractUninstantiableAsset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Asset/AbstractUninstantiableAsset.php -------------------------------------------------------------------------------- /src/BuzzHttpAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/BuzzHttpAdapter.php -------------------------------------------------------------------------------- /src/CakeHttpAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/CakeHttpAdapter.php -------------------------------------------------------------------------------- /src/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Configuration.php -------------------------------------------------------------------------------- /src/ConfigurationInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/ConfigurationInterface.php -------------------------------------------------------------------------------- /src/CurlHttpAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/CurlHttpAdapter.php -------------------------------------------------------------------------------- /src/Event/AbstractEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Event/AbstractEvent.php -------------------------------------------------------------------------------- /src/Event/BasicAuth/BasicAuth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Event/BasicAuth/BasicAuth.php -------------------------------------------------------------------------------- /src/Event/BasicAuth/BasicAuthInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Event/BasicAuth/BasicAuthInterface.php -------------------------------------------------------------------------------- /src/Event/Cache/Adapter/CacheAdapterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Event/Cache/Adapter/CacheAdapterInterface.php -------------------------------------------------------------------------------- /src/Event/Cache/Adapter/DoctrineCacheAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Event/Cache/Adapter/DoctrineCacheAdapter.php -------------------------------------------------------------------------------- /src/Event/Cache/Adapter/StashCacheAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Event/Cache/Adapter/StashCacheAdapter.php -------------------------------------------------------------------------------- /src/Event/Cache/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Event/Cache/Cache.php -------------------------------------------------------------------------------- /src/Event/Cache/CacheInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Event/Cache/CacheInterface.php -------------------------------------------------------------------------------- /src/Event/Cookie/Cookie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Event/Cookie/Cookie.php -------------------------------------------------------------------------------- /src/Event/Cookie/CookieFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Event/Cookie/CookieFactory.php -------------------------------------------------------------------------------- /src/Event/Cookie/CookieFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Event/Cookie/CookieFactoryInterface.php -------------------------------------------------------------------------------- /src/Event/Cookie/CookieInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Event/Cookie/CookieInterface.php -------------------------------------------------------------------------------- /src/Event/Cookie/Jar/AbstractPersistentCookieJar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Event/Cookie/Jar/AbstractPersistentCookieJar.php -------------------------------------------------------------------------------- /src/Event/Cookie/Jar/CookieJar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Event/Cookie/Jar/CookieJar.php -------------------------------------------------------------------------------- /src/Event/Cookie/Jar/CookieJarInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Event/Cookie/Jar/CookieJarInterface.php -------------------------------------------------------------------------------- /src/Event/Cookie/Jar/FileCookieJar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Event/Cookie/Jar/FileCookieJar.php -------------------------------------------------------------------------------- /src/Event/Cookie/Jar/PersistentCookieJarInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Event/Cookie/Jar/PersistentCookieJarInterface.php -------------------------------------------------------------------------------- /src/Event/Cookie/Jar/SessionCookieJar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Event/Cookie/Jar/SessionCookieJar.php -------------------------------------------------------------------------------- /src/Event/Events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Event/Events.php -------------------------------------------------------------------------------- /src/Event/Formatter/Formatter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Event/Formatter/Formatter.php -------------------------------------------------------------------------------- /src/Event/Formatter/FormatterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Event/Formatter/FormatterInterface.php -------------------------------------------------------------------------------- /src/Event/History/Journal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Event/History/Journal.php -------------------------------------------------------------------------------- /src/Event/History/JournalEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Event/History/JournalEntry.php -------------------------------------------------------------------------------- /src/Event/History/JournalEntryFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Event/History/JournalEntryFactory.php -------------------------------------------------------------------------------- /src/Event/History/JournalEntryFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Event/History/JournalEntryFactoryInterface.php -------------------------------------------------------------------------------- /src/Event/History/JournalEntryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Event/History/JournalEntryInterface.php -------------------------------------------------------------------------------- /src/Event/History/JournalInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Event/History/JournalInterface.php -------------------------------------------------------------------------------- /src/Event/MultiRequestCreatedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Event/MultiRequestCreatedEvent.php -------------------------------------------------------------------------------- /src/Event/MultiRequestErroredEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Event/MultiRequestErroredEvent.php -------------------------------------------------------------------------------- /src/Event/MultiRequestSentEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Event/MultiRequestSentEvent.php -------------------------------------------------------------------------------- /src/Event/Redirect/Redirect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Event/Redirect/Redirect.php -------------------------------------------------------------------------------- /src/Event/Redirect/RedirectInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Event/Redirect/RedirectInterface.php -------------------------------------------------------------------------------- /src/Event/RequestCreatedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Event/RequestCreatedEvent.php -------------------------------------------------------------------------------- /src/Event/RequestErroredEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Event/RequestErroredEvent.php -------------------------------------------------------------------------------- /src/Event/RequestSentEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Event/RequestSentEvent.php -------------------------------------------------------------------------------- /src/Event/Retry/Retry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Event/Retry/Retry.php -------------------------------------------------------------------------------- /src/Event/Retry/RetryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Event/Retry/RetryInterface.php -------------------------------------------------------------------------------- /src/Event/Retry/Strategy/AbstractDelayedRetryStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Event/Retry/Strategy/AbstractDelayedRetryStrategy.php -------------------------------------------------------------------------------- /src/Event/Retry/Strategy/AbstractRetryStrategyChain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Event/Retry/Strategy/AbstractRetryStrategyChain.php -------------------------------------------------------------------------------- /src/Event/Retry/Strategy/CallbackRetryStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Event/Retry/Strategy/CallbackRetryStrategy.php -------------------------------------------------------------------------------- /src/Event/Retry/Strategy/ConstantDelayedRetryStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Event/Retry/Strategy/ConstantDelayedRetryStrategy.php -------------------------------------------------------------------------------- /src/Event/Retry/Strategy/ExponentialDelayedRetryStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Event/Retry/Strategy/ExponentialDelayedRetryStrategy.php -------------------------------------------------------------------------------- /src/Event/Retry/Strategy/LimitedRetryStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Event/Retry/Strategy/LimitedRetryStrategy.php -------------------------------------------------------------------------------- /src/Event/Retry/Strategy/LinearDelayedRetryStrategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Event/Retry/Strategy/LinearDelayedRetryStrategy.php -------------------------------------------------------------------------------- /src/Event/Retry/Strategy/RetryStrategyChainInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Event/Retry/Strategy/RetryStrategyChainInterface.php -------------------------------------------------------------------------------- /src/Event/Retry/Strategy/RetryStrategyInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Event/Retry/Strategy/RetryStrategyInterface.php -------------------------------------------------------------------------------- /src/Event/StatusCode/StatusCode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Event/StatusCode/StatusCode.php -------------------------------------------------------------------------------- /src/Event/StatusCode/StatusCodeInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Event/StatusCode/StatusCodeInterface.php -------------------------------------------------------------------------------- /src/Event/Subscriber/AbstractFormatterSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Event/Subscriber/AbstractFormatterSubscriber.php -------------------------------------------------------------------------------- /src/Event/Subscriber/AbstractTimerSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Event/Subscriber/AbstractTimerSubscriber.php -------------------------------------------------------------------------------- /src/Event/Subscriber/BasicAuthSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Event/Subscriber/BasicAuthSubscriber.php -------------------------------------------------------------------------------- /src/Event/Subscriber/CacheSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Event/Subscriber/CacheSubscriber.php -------------------------------------------------------------------------------- /src/Event/Subscriber/CookieSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Event/Subscriber/CookieSubscriber.php -------------------------------------------------------------------------------- /src/Event/Subscriber/HistorySubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Event/Subscriber/HistorySubscriber.php -------------------------------------------------------------------------------- /src/Event/Subscriber/LoggerSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Event/Subscriber/LoggerSubscriber.php -------------------------------------------------------------------------------- /src/Event/Subscriber/RedirectSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Event/Subscriber/RedirectSubscriber.php -------------------------------------------------------------------------------- /src/Event/Subscriber/RetrySubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Event/Subscriber/RetrySubscriber.php -------------------------------------------------------------------------------- /src/Event/Subscriber/StatusCodeSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Event/Subscriber/StatusCodeSubscriber.php -------------------------------------------------------------------------------- /src/Event/Subscriber/StopwatchSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Event/Subscriber/StopwatchSubscriber.php -------------------------------------------------------------------------------- /src/Event/Timer/Timer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Event/Timer/Timer.php -------------------------------------------------------------------------------- /src/Event/Timer/TimerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Event/Timer/TimerInterface.php -------------------------------------------------------------------------------- /src/EventDispatcherHttpAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/EventDispatcherHttpAdapter.php -------------------------------------------------------------------------------- /src/Extractor/ProtocolVersionExtractor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Extractor/ProtocolVersionExtractor.php -------------------------------------------------------------------------------- /src/Extractor/StatusCodeExtractor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Extractor/StatusCodeExtractor.php -------------------------------------------------------------------------------- /src/Extractor/StatusLineExtractor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Extractor/StatusLineExtractor.php -------------------------------------------------------------------------------- /src/FileGetContentsHttpAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/FileGetContentsHttpAdapter.php -------------------------------------------------------------------------------- /src/FopenHttpAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/FopenHttpAdapter.php -------------------------------------------------------------------------------- /src/Guzzle3HttpAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Guzzle3HttpAdapter.php -------------------------------------------------------------------------------- /src/Guzzle4HttpAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Guzzle4HttpAdapter.php -------------------------------------------------------------------------------- /src/Guzzle5HttpAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Guzzle5HttpAdapter.php -------------------------------------------------------------------------------- /src/Guzzle6HttpAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Guzzle6HttpAdapter.php -------------------------------------------------------------------------------- /src/HttpAdapterException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/HttpAdapterException.php -------------------------------------------------------------------------------- /src/HttpAdapterFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/HttpAdapterFactory.php -------------------------------------------------------------------------------- /src/HttpAdapterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/HttpAdapterInterface.php -------------------------------------------------------------------------------- /src/HttpAdapterTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/HttpAdapterTrait.php -------------------------------------------------------------------------------- /src/HttpfulHttpAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/HttpfulHttpAdapter.php -------------------------------------------------------------------------------- /src/Message/InternalRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Message/InternalRequest.php -------------------------------------------------------------------------------- /src/Message/InternalRequestInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Message/InternalRequestInterface.php -------------------------------------------------------------------------------- /src/Message/MessageFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Message/MessageFactory.php -------------------------------------------------------------------------------- /src/Message/MessageFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Message/MessageFactoryInterface.php -------------------------------------------------------------------------------- /src/Message/MessageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Message/MessageInterface.php -------------------------------------------------------------------------------- /src/Message/MessageTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Message/MessageTrait.php -------------------------------------------------------------------------------- /src/Message/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Message/Request.php -------------------------------------------------------------------------------- /src/Message/RequestInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Message/RequestInterface.php -------------------------------------------------------------------------------- /src/Message/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Message/Response.php -------------------------------------------------------------------------------- /src/Message/ResponseInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Message/ResponseInterface.php -------------------------------------------------------------------------------- /src/MockHttpAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/MockHttpAdapter.php -------------------------------------------------------------------------------- /src/MultiHttpAdapterException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/MultiHttpAdapterException.php -------------------------------------------------------------------------------- /src/Normalizer/BodyNormalizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Normalizer/BodyNormalizer.php -------------------------------------------------------------------------------- /src/Normalizer/HeadersNormalizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Normalizer/HeadersNormalizer.php -------------------------------------------------------------------------------- /src/Parser/CookieParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Parser/CookieParser.php -------------------------------------------------------------------------------- /src/Parser/HeadersParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Parser/HeadersParser.php -------------------------------------------------------------------------------- /src/PeclHttpAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/PeclHttpAdapter.php -------------------------------------------------------------------------------- /src/PsrHttpAdapterDecorator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/PsrHttpAdapterDecorator.php -------------------------------------------------------------------------------- /src/PsrHttpAdapterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/PsrHttpAdapterInterface.php -------------------------------------------------------------------------------- /src/ReactHttpAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/ReactHttpAdapter.php -------------------------------------------------------------------------------- /src/RequestsHttpAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/RequestsHttpAdapter.php -------------------------------------------------------------------------------- /src/SocketHttpAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/SocketHttpAdapter.php -------------------------------------------------------------------------------- /src/StopwatchHttpAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/StopwatchHttpAdapter.php -------------------------------------------------------------------------------- /src/Zend1HttpAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Zend1HttpAdapter.php -------------------------------------------------------------------------------- /src/Zend2HttpAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/egeloen/ivory-http-adapter/HEAD/src/Zend2HttpAdapter.php --------------------------------------------------------------------------------