Download the PHP package nicolasguilloux/wiremock-bundle without Composer

On this page you can find all versions of the php package nicolasguilloux/wiremock-bundle. 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 wiremock-bundle

:toc: macro :toc-title: :toclevels: 2 :sectnums: :sectnumlevels: 2

image:https://img.shields.io/packagist/v/NicolasGuilloux/wiremock-bundle[link="https://packagist.org/packages/NicolasGuilloux/wiremock-bundle",window="_blank"] image:https://github.com/NicolasGuilloux/wiremock-bundle/actions/workflows/tests.yml/badge.svg[link="https://github.com/NicolasGuilloux/wiremock-bundle/actions",window="_blank"] image:https://codecov.io/gh/NicolasGuilloux/wiremock-bundle/graph/badge.svg?token=K5MF64E9QR[link="https://codecov.io/gh/NicolasGuilloux/wiremock-bundle",window="_blank"] image:https://api.codeclimate.com/v1/badges/01093fd38d1ae0c5aba6/maintainability[link="https://codeclimate.com/github/NicolasGuilloux/wiremock-bundle/maintainability",window="_blank"] image:https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat[link="https://github.com/NicolasGuilloux/wiremock-bundle/issues",window="_blank"] image:https://img.shields.io/badge/license-MIT-blue.svg[link="LICENSE",window="_blank"] + image:https://img.shields.io/badge/PHP-8.0%2B-yellow[] image:https://img.shields.io/badge/PHP-8.1%2B-yellow[] image:https://img.shields.io/badge/PHP-8.2%2B-yellow[] image:https://img.shields.io/badge/PHP-8.3%2B-yellow[] + image:https://img.shields.io/badge/Symfony-5%2B-black[] image:https://img.shields.io/badge/Symfony-6%2B-black[] image:https://img.shields.io/badge/Symfony-7%2B-black[]

A Symfony bundle to quickly mock Http Clients using Wiremock. The way it works is by decorating the Symfony HttpClient. It checks if Wiremock has a stub for the request and if it does, it returns the stubbed response. If not, it forwards the request to the original http client as usual.

[discrete] == Table of content

toc::[]

== Installation

Execute the composer command to install the bundle:

[source,bash]

composer require nicolasguilloux/wiremock-bundle --dev

== Documentation

=== Configuration

Here is an example of a configuration with the Wiremock http client:

[source,yaml]

framework: http_client: scoped_clients: wiremock.client: base_uri: 'http://localhost:8080'

wiremock:

Set the Wiremock http client (default: wiremock.client)

# http_client: 'wiremock.client'

# Removes the Wiremock http client from the HttpClient profiler page (default: false)
# remove_from_http_client_profiler: true

# Decorates by default all clients except the following ones (default: [])
# blacklist_clients: []

# Decorates only the following http client (default: [])
# whitelist_clients: []

=== Profiler

A new tab is available in the Symfony profiler to see the Wiremock http calls. This might be helpful to see if a request has been used to stub a response or not.

== Versioning

wiremock-bundle follows link:https://semver.org/[semantic versioning^]. In short the scheme is MAJOR.MINOR.PATCH where

  1. MAJOR is bumped when there is a breaking change,
  2. MINOR is bumped when a new feature is added in a backward-compatible way,
  3. PATCH is bumped when a bug is fixed in a backward-compatible way.

Versions bellow 1.0.0 are considered experimental and breaking changes may occur at any time.

== Contributing

Contributions are welcomed! There are many ways to contribute, and we appreciate all of them. Here are some of the major ones:

As a reminder, all contributors are expected to follow our link:./CODE_OF_CONDUCT.md[Code of Conduct].

== License

wiremock-bundle is distributed under the terms of the MIT license.

See link:./LICENSE[LICENSE] for details.

== Hacking

link:https://nixos.org/manual/nix/stable/introduction[Nix^] and link:https://devenv.sh/[devenv] are here to help you install the software dependencies.

With the two tools installed, you can simply enter a working shell: devenv shell.


All versions of wiremock-bundle with dependencies

PHP Build Version
Package Version
Requires php Version ^8.0
symfony/config Version ^5.0 || ^6.0 || ^7.0
symfony/dependency-injection Version ^5.0 || ^6.0 || ^7.0
symfony/http-client Version ^5.0 || ^6.0 || ^7.0
symfony/http-kernel Version ^5.0 || ^6.0 || ^7.0
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 nicolasguilloux/wiremock-bundle contains the following files

Loading the files please wait ....