You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Phiremock is a mocker and stubber of HTTP services, it allows software developers to mock HTTP requests and setup responses to avoid calling real services during development, and is particulary useful during acceptance testing when expected http requests can be mocked and verified. Any HTTP service (i.e.: REST services) can be mocked and stubbed with Phiremock.
Phiremock is heavily inspired by WireMock, but does not force you to have a java installation in your PHP development environment. The full functionality of Phiremock is detailed in the following list:
Allows to mock http request based in method, headers, url and body content.
Allows to match expectations using regexp patterns or equality.
REST interface to setup.
Stateful and stateless mocking.
Network latency simulation.
Priorizable expectations for cases in which more than one matches the request. If more than one expectation matches the request and no priorities were set, the first match is returned.
Allows to verify the amount of times a request was done.
Allows to load default expectations from json files in a directory tree.
Proxy requests to another URL as they are received.
Client with fluent interface to configure Phiremock.