Download the PHP package alirezamires/php-dummy-server without Composer

On this page you can find all versions of the php package alirezamires/php-dummy-server. 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 php-dummy-server

PHP Dummy Server: Simulate APIs for Easy Testing

The PHP Dummy Server is a library that allows you to create a mock server environment for testing applications that rely on external APIs or services. It simplifies testing by enabling you to define various responses (success, failure) and isolate your application from external dependencies.

Benefits:

Reliable Tests: Ensures tests fail only due to genuine bugs in your code, not external factors. Flexible Responses: Simulate different API responses (success, errors) for various test scenarios. Decoupled Development: Start development on your application even before the actual service is available. Isolated Teams: Allows development teams to work independently even if the real service is unstable. Simplified Debugging: Isolate issues during deployment and debugging by simulating specific services locally.

Getting Started

Installation

Install the library using Composer:

Configuration

Edit the server.php file:

Define the Data Directory: Set the PHP_DUMMY_SERVER_ROOT_DIR constant to specify the location for storing dummy server data (e.g., responses).

Run the Server

Start the server using the following command in your terminal:

Defining Responses

Create a folder named dummy-data in the root directory specified in configuration. Inside the dummy-data folder, create JSON files to define response data for different scenarios.\ Supported HTTP Methods:

Create a file named 1.json inside the dummy-data/user folder with the following content:

Now, any GET request to http://localhost:8000/user/1 will return the data from the 1.json file.

Additional Notes:

This library is licensed under the MIT License.

Contributing

We welcome contributions to improve this library. Feel free to submit pull requests or open issues on the GitHub repository.


All versions of php-dummy-server with dependencies

PHP Build Version
Package Version
Requires php Version ^8
ext-zip Version *
spatie/once Version ^3.1
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 alirezamires/php-dummy-server contains the following files

Loading the files please wait ....