Download the PHP package genesis/mock-api without Composer

On this page you can find all versions of the php package genesis/mock-api. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package mock-api

API mocker Build Status

Have an application that depends on an API but is too much of a burden on testing? Replace your API with a mock API using this package and mock requests on the fly.

How to install

Start mock-api:

Test that the mock API is running:

Stop mock-api:

Find more commands in the generated Makefile.

Static mocks

You can add your static routes (ones that will be available as soon as you boot up the mock API) in the staticMocks folder. The data format is defined below and example request already exists.

Dynamic mocks

To mock a request POST your mocking request to /mocks with mockData json. Example mock request:

You can override a static mock with a dynamic one. Purging the mocks will revert the back to the static mock.

Full mock data options:

mockData (object): Contains mock request information.

mockData.url (string): The URL to mock, can be an existing statically mocked URL.

mockData.<METHOD> ([]object): The method to mock for the URL.

mockData.<METHOD>.with (?string): A regex pattern to be applied to the URL optionally.

mockData.<METHOD>.response_code (?int): The response code to return optionally.

mockData.<METHOD>.headers (?object): The headers to return.

mockData.<METHOD>.body (mixed): The response content.

mockData.<METHOD>.consecutive_responses (?[]object): On consecutive calls return one after the other. Supports response_code, headers and body.

mockData.<METHOD>.proxy (?object): Proxy the response through another URL.

View mocked endpoints

View existing mock requests by visiting /mocks

Purge dynamic mocks

To purge all dynamic mocks created send GET request to /mocks?purge=true

Development:

Running tests is just a case of running the behat tests:


All versions of mock-api with dependencies

PHP Build Version
Package Version
Requires php Version ~7.1
ext-curl Version *
react/http Version ~0.8
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package genesis/mock-api contains the following files

Loading the files please wait ....