Download the PHP package satahippy/fake-api-server without Composer
On this page you can find all versions of the php package satahippy/fake-api-server. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download satahippy/fake-api-server
More information about satahippy/fake-api-server
Files in satahippy/fake-api-server
Package fake-api-server
Short Description Fake your API. Primarily for frontend development.
License MIT
Informations about the package fake-api-server
Fake API Server
Usage
All that you need is ... Data Provider! It's provide a data depend on a request
Data Providers
Each Data Provider implements interface Sata\FakeServerApi\DataProvider\IDataProvider
Now there is only one method data
that receive Psr\Http\Message\ServerRequestInterface
and returns some data
RouterDataProvider
It's an compose data provider. That retrieves routes with data providers It uses nikic/FastRoute under the hood, so every route should meet the requirements.
Example
Features
After request satisfy the route, new instance of a request (with matched parameters) pass to the target data provider.
FileDataProvider
Just returns content of specified file.
Example
Features
It's receives an instance of League\Flysystem\Filesystem
.
About Flysystem read more here - thephpleague/flysystem.
PathDataProvider
Like a FileDataProvider
it's returns a file content, but with some additional bahavior.
First of it's mount some folder (via Flysystem) to the request (or a visa versa). Also it can handle significant parameters.
Example
For example, if you have an posts API, you can mount data/posts/
folder to all /posts
requests.
And of course, your API has a pagination logic. Like a /posts?page=1
, /posts?page=2
.
So by here is map of your request to the files
/posts
->data/posts/default.json
/posts?page=1
->data/posts/page_1.json
/posts?page=2
->data/posts/page_2.json
/posts?some=parameter
->data/posts/default.json
By default, if the file is not found the default file will be mounted.
ProxyDataProvider
Primarily this data provider used for a slow connections.
It's receives an instances of Guzzle Client and Doctrine Cache
So every request will be proxied to the remote server and saved in cache.
Example
Restrictions
There are really bad work with other response/request parameters. If your application relies on http statuses, so it's may be a huge problem.
All versions of fake-api-server with dependencies
psr/http-message Version ~1.0
league/flysystem Version ~1.0
nikic/fast-route Version ~0.4
guzzlehttp/guzzle Version ~6.0
doctrine/cache Version ~1.0