summaryrefslogtreecommitdiff
path: root/vendor/opentracing/opentracing/CONTRIBUTING.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/opentracing/opentracing/CONTRIBUTING.md
parent45a9ff0c88cbd33892ff16ab837e9059937d656e (diff)
jaeger-client -> opentelemetry
Diffstat (limited to 'vendor/opentracing/opentracing/CONTRIBUTING.md')
-rw-r--r--vendor/opentracing/opentracing/CONTRIBUTING.md75
1 files changed, 0 insertions, 75 deletions
diff --git a/vendor/opentracing/opentracing/CONTRIBUTING.md b/vendor/opentracing/opentracing/CONTRIBUTING.md
deleted file mode 100644
index a13c0fe1d..000000000
--- a/vendor/opentracing/opentracing/CONTRIBUTING.md
+++ /dev/null
@@ -1,75 +0,0 @@
-Contributing
-============
-
-Thank you for contributing to this project!
-
-Bug reports
------------
-
-If you find a bug, please submit an issue. Try to be as detailed as possible
-in your problem description to help us fix the bug.
-
-Feature requests
-----------------
-
-If you wish to propose a feature, please submit an issue. Try to explain your
-use case as fully as possible to help us understand why you think the feature
-should be added.
-
-License
--------
-
-By contributing your code, you agree to license your contribution under the terms of the APLv2:
-https://github.com/opentracing/opentracing-php/blob/master/LICENSE
-
-All files are released with the Apache 2.0 license.
-
-Creating a pull request (PR)
-----------------------------
-
-First [fork the repository](https://help.github.com/articles/fork-a-repo/) on
-GitHub.
-
-Then clone your fork:
-
-```bash
-$ git clone https://github.com/your-name/opentracing-php.git
-$ git checkout -b bug-or-feature-description
-```
-
-And install the dependencies:
-
-```bash
-$ composer install
-```
-
-Write your code and add tests. Then run the static check and the tests:
-
-```bash
-$ composer run static-check
-$ composer run test
-```
-
-Commit your changes and push them to GitHub:
-
-```bash
-$ git commit -m "Fix nasty bug"
-$ git push -u origin bug-or-feature-description
-```
-
-Then [create a pull request](https://help.github.com/articles/creating-a-pull-request/)
-on GitHub.
-
-If you need to make some changes, commit and push them as you like. When asked
-to squash your commits, do so as follows:
-
-```bash
-git rebase -i
-git push origin bug-or-feature-description -f
-```
-
-Coding standard
----------------
-
-This project follows the [PSR-2](http://www.php-fig.org/psr/psr-2/) coding style.
-Please make sure your pull requests adhere to this standard.