summaryrefslogtreecommitdiff
path: root/vendor/jonahgeorge/jaeger-client-php/tests/README.md
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2023-10-20 17:12:29 +0300
committerAndrew Dolgov <[email protected]>2023-10-20 21:13:39 +0300
commitcdd7ad020e165fe680703b6d3319b908b682fb7a (patch)
treeb51eb09b7b4587e8fbc5624ac8d88d28cfcd0b04 /vendor/jonahgeorge/jaeger-client-php/tests/README.md
parent45a9ff0c88cbd33892ff16ab837e9059937d656e (diff)
jaeger-client -> opentelemetry
Diffstat (limited to 'vendor/jonahgeorge/jaeger-client-php/tests/README.md')
-rw-r--r--vendor/jonahgeorge/jaeger-client-php/tests/README.md48
1 files changed, 0 insertions, 48 deletions
diff --git a/vendor/jonahgeorge/jaeger-client-php/tests/README.md b/vendor/jonahgeorge/jaeger-client-php/tests/README.md
deleted file mode 100644
index aa828030f..000000000
--- a/vendor/jonahgeorge/jaeger-client-php/tests/README.md
+++ /dev/null
@@ -1,48 +0,0 @@
-# Jaeger Bindings for PHP OpenTracing API: Unit Tests
-
-Welcome to the Jaeger Testing Suite.
-
-This folder includes all the unit tests that test Jaeger components, ensuring that you enjoy a bug free library.
-
-## Current PHP Support
-
-| version | status |
-|---------|--------|
-| 7.0 | ✔ |
-| 7.1 | ✔ |
-| 7.2 | ✔ |
-
-
-## Getting Started
-
-This testing suite uses [Travis CI](https://travis-ci.org/) for each run.
-Every commit pushed to this repository will queue a build into the continuous integration service and will run all tests
-to ensure that everything is going well and the project is stable.
-
-The testing suite can be run on your own machine. The main dependency is [PHPUnit](https://phpunit.de/)
-which can be installed using [Composer](https://getcomposer.org/):
-
-```bash
-# run this command from project root
-$ composer install
-```
-
-Then run the tests by calling command from the terminal as follows:
-
-```bash
-$ composer test
-```
-
-## Run Tests for Supported Versions
-
-There is also an ability to run tests for different PHP versions. To achieve this we offer use
-[docker](https://docs.docker.com/install/)-based approach:
-
-```bash
-
-$ docker run --rm -it -v $(pwd):/usr/app php:7.0 ./usr/app/tests/php-test.sh
-
-$ docker run --rm -it -v $(pwd):/usr/app php:7.1 ./usr/app/tests/php-test.sh
-
-$ docker run --rm -it -v $(pwd):/usr/app php:7.2 ./usr/app/tests/php-test.sh
-```