From f8918e423bacb2cb87aaf851a57cdabd0da5ffc2 Mon Sep 17 00:00:00 2001 From: tienvx Date: Fri, 19 Apr 2024 09:38:25 +0700 Subject: [PATCH] docs: Move additional examples to docs/ --- README.md | 6 ------ docs/ADDITIONAL-EXAMPLES.md | 5 +++++ 2 files changed, 5 insertions(+), 6 deletions(-) create mode 100644 docs/ADDITIONAL-EXAMPLES.md diff --git a/README.md b/README.md index fed33a85..0dbd5f93 100644 --- a/README.md +++ b/README.md @@ -72,7 +72,6 @@ Table of contents - [Tips](#tips) - [Starting API Asynchronously](#starting-api-asynchronously) - [Set Up Provider State](#set-up-provider-state) - - [Additional Examples](#additional-examples) - [Message support](#message-support) - [Consumer Side Message Processing](#consumer-side-message-processing) - [Provider Side Message Validation](#provider-side-message-validation) @@ -386,11 +385,6 @@ Here are some options: No matter which direction you go, you will have to modify something outside of the PHP process because each request to your server will be stateless and independent. -### Additional Examples -There is a separate repository with an end to end example for both the 2.X and 3.X implementations. -- [pact-php-example](https://github.com/mattermack/pact-php-example) for 3.X examples -- [2.2.1 tag](https://github.com/mattermack/pact-php-example/tree/2.2.1) for 2.X examples - ## Message support The goal is not to test the transmission of an object over a bus but instead vet the contents of the message. While examples included focus on a Rabbit MQ, the exact message queue is irrelevant. Initial comparisons require a certain diff --git a/docs/ADDITIONAL-EXAMPLES.md b/docs/ADDITIONAL-EXAMPLES.md new file mode 100644 index 00000000..f6468c52 --- /dev/null +++ b/docs/ADDITIONAL-EXAMPLES.md @@ -0,0 +1,5 @@ +# Additional Examples + +There is a separate repository with an end to end example for both the 2.X and 3.X implementations. +- [pact-php-example](https://github.com/mattermack/pact-php-example) for 3.X examples +- [2.2.1 tag](https://github.com/mattermack/pact-php-example/tree/2.2.1) for 2.X examples