<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Dan</title>
    <description>The latest articles on DEV Community by Dan (@pixelbrackets).</description>
    <link>https://dev.to/pixelbrackets</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F67184%2F8963729d-a126-4849-8694-0a2b6233af76.jpg</url>
      <title>DEV Community: Dan</title>
      <link>https://dev.to/pixelbrackets</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/pixelbrackets"/>
    <language>en</language>
    <item>
      <title>Awesome Open Source Badges for your Git README</title>
      <dc:creator>Dan</dc:creator>
      <pubDate>Sat, 26 Sep 2020 14:14:23 +0000</pubDate>
      <link>https://dev.to/pixelbrackets/awesome-open-source-badges-for-your-git-readme-1cn4</link>
      <guid>https://dev.to/pixelbrackets/awesome-open-source-badges-for-your-git-readme-1cn4</guid>
      <description>&lt;p&gt;&lt;strong&gt;tl;dr&lt;/strong&gt; Badges are a pretty way to display concise project information in a README.&lt;/p&gt;

&lt;p&gt;Badges are a pretty way to display concise information about a project. They consist of a small image showing a topic and a status message and optionally linking to further information. Like tags they written in lowercase. Usually they are added to the top of a README file, which should contain sections for the topics anyway.&lt;/p&gt;

&lt;p&gt;The most popular badge service is &lt;a href="https://shields.io" rel="noopener noreferrer"&gt;Shields&lt;/a&gt;. They allow custom badges and provide a huge list of dynamic badges. The later gather additional data from other services like code style checkers or download trackers. And a very big advantage is their »no tracking« policy.&lt;/p&gt;

&lt;p&gt;In this post I will show a couple of badges you may consider adding to your Open Source package. The examples refer to GitHub and PHP/Packagist, but there are equivalents for most languages and plattforms.&lt;/p&gt;

&lt;h2&gt;
  
  
  Latest Version
&lt;/h2&gt;

&lt;p&gt;Show the latest release of the package.&lt;/p&gt;

&lt;p&gt;From GitHub tags:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;[![Latest Version](https://img.shields.io/github/v/tag/&amp;lt;USER&amp;gt;/&amp;lt;REPOSITORY&amp;gt;?sort=semver&amp;amp;label=version)](https://github.com/&amp;lt;USER&amp;gt;/&amp;lt;REPOSITORY&amp;gt;/)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;a href="https://github.com/guzzle/guzzle/" rel="noopener noreferrer"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fimg.shields.io%2Fgithub%2Fv%2Ftag%2Fguzzle%2Fguzzle%3Fsort%3Dsemver%26label%3Dversion" alt="Latest Version"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;From Packagist tags:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;[![Latest Version](https://img.shields.io/packagist/v/&amp;lt;USER&amp;gt;/&amp;lt;PACKAGE&amp;gt;?label=version)](https://packagist.org/packages/&amp;lt;USER&amp;gt;/&amp;lt;PACKAGE&amp;gt;/)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;a href="https://packagist.org/packages/guzzlehttp/guzzle/" rel="noopener noreferrer"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fimg.shields.io%2Fpackagist%2Fv%2Fguzzlehttp%2Fguzzle%3Flabel%3Dversion" alt="Latest Version"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The link could point to a &lt;a href="https://github.com/guzzle/guzzle/releases" rel="noopener noreferrer"&gt;release page&lt;/a&gt;, &lt;a href="https://packagist.org/packages/guzzlehttp/guzzle" rel="noopener noreferrer"&gt;Packagist&lt;/a&gt; or a &lt;a href="https://github.com/guzzle/guzzle/blob/master/CHANGELOG.md" rel="noopener noreferrer"&gt;Changelog file&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Development
&lt;/h2&gt;

&lt;p&gt;Show in which branch the development is done or how many commits since the latest release are added.&lt;/p&gt;

&lt;p&gt;Manual:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;[![Development Branch](https://img.shields.io/badge/development_branch-&amp;lt;DEVELOPMENT BRANCH&amp;gt;-green.svg)](https://github.com/&amp;lt;USER&amp;gt;/&amp;lt;REPOSITORY&amp;gt;/tree/&amp;lt;DEVELOPMENT BRANCH&amp;gt;/)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fimg.shields.io%2Fbadge%2Fdevelopment_branch-next--release-green.svg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fimg.shields.io%2Fbadge%2Fdevelopment_branch-next--release-green.svg" alt="Development Branch"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;From GitHub release page:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;[![Commits in development](https://img.shields.io/github/commits-since/&amp;lt;USER&amp;gt;/&amp;lt;REPOSITORY&amp;gt;/latest/)](https://github.com/&amp;lt;USER&amp;gt;/&amp;lt;REPOSITORY&amp;gt;/tree/&amp;lt;DEVELOPMENT BRANCH&amp;gt;/)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;a href="https://github.com/guzzle/guzzle/tree/master/" rel="noopener noreferrer"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fimg.shields.io%2Fgithub%2Fcommits-since%2Fguzzle%2Fguzzle%2Flatest%2F" alt="Commits in development"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The link could point to the development branch or a milestone page.&lt;/p&gt;

&lt;h2&gt;
  
  
  Latest Build Status
&lt;/h2&gt;

&lt;p&gt;Show the latest CI pipeline result.&lt;/p&gt;

&lt;p&gt;From GitHub CI workflow:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;[![Build Status](https://img.shields.io/github/workflow/status/&amp;lt;USER&amp;gt;/&amp;lt;REPOSITORY&amp;gt;/&amp;lt;WORKFLOW&amp;gt;?label=build)](https://github.com/&amp;lt;USER&amp;gt;/&amp;lt;REPOSITORY&amp;gt;/actions)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;a href="https://github.com/guzzle/guzzle/actions?query=workflow%3ACI" rel="noopener noreferrer"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fimg.shields.io%2Fgithub%2Fworkflow%2Fstatus%2Fguzzle%2Fguzzle%2FCI%3Flabel%3Dbuild" alt="Build Status"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Programming language
&lt;/h2&gt;

&lt;p&gt;Show the language which is used in the package.&lt;/p&gt;

&lt;p&gt;Manual:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;[![Made With](https://img.shields.io/badge/made_with-php-blue)](/docs/requirements/)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;a href="/docs/requirements/"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fimg.shields.io%2Fbadge%2Fmade_with-php-blue" alt="Made With"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;[![Made With](https://img.shields.io/badge/%3C%2F%3E-PHP%2C%20JavaScript-blue)](/docs/requirements/)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;a href="/docs/requirements/"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fimg.shields.io%2Fbadge%2F%253C%252F%253E-PHP%252C%2520JavaScript-blue" alt="Made With"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The link could point to an installation guide or requirements section in your README.&lt;/p&gt;

&lt;h2&gt;
  
  
  Package Repository
&lt;/h2&gt;

&lt;p&gt;Show where to get the package (Packagist, NPM, RubyGems etc).&lt;/p&gt;

&lt;p&gt;This may be combined with the version badge. So this could show some statistics instead.&lt;/p&gt;

&lt;p&gt;From Packagist:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;[![Packagist](https://img.shields.io/packagist/v/&amp;lt;USER&amp;gt;/&amp;lt;PACKAGE&amp;gt;)](https://packagist.org/packages/&amp;lt;USER&amp;gt;/&amp;lt;PACKAGE&amp;gt;/)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;a href="https://packagist.org/packages/guzzlehttp/guzzle/" rel="noopener noreferrer"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fimg.shields.io%2Fpackagist%2Fv%2Fguzzlehttp%2Fguzzle" alt="Packagist"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;From Packagist download counter:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;[![Packagist Downloads](https://img.shields.io/packagist/dm/&amp;lt;USER&amp;gt;/&amp;lt;PACKAGE&amp;gt;.svg?label=packagist%20downloads)](https://packagist.org/packages/&amp;lt;USER&amp;gt;/&amp;lt;PACKAGE&amp;gt;)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;a href="https://packagist.org/packages/guzzlehttp/guzzle" rel="noopener noreferrer"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fimg.shields.io%2Fpackagist%2Fdm%2Fguzzlehttp%2Fguzzle.svg%3Flabel%3Dpackagist%2520downloads" alt="Packagist Downloads"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Some package repositories support showing ratings instead. This is not possible for Packagist yet.&lt;/p&gt;

&lt;h2&gt;
  
  
  Documentation
&lt;/h2&gt;

&lt;p&gt;Documentation is key! Provide quick access to documentation.&lt;/p&gt;

&lt;p&gt;Manual:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;[![Development Branch](https://img.shields.io/badge/docs-&amp;lt;TYPE&amp;gt;-green.svg)](https://github.com/&amp;lt;USER&amp;gt;/&amp;lt;REPOSITORY&amp;gt;/blob/master/&amp;lt;DOC FILE&amp;gt;/)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;a href="https://github.com/guzzle/guzzle/blob/master/docs/quickstart.rst" rel="noopener noreferrer"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fimg.shields.io%2Fbadge%2Fdocs-quickstart-green.svg" alt="Development Branch"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;From Read the Docs:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;[![Documentation Status](https://img.shields.io/readthedocs/&amp;lt;PROJECT&amp;gt;)](https://&amp;lt;PROJECT&amp;gt;.readthedocs.io/)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;a href="https://guzzle.readthedocs.io/" rel="noopener noreferrer"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fimg.shields.io%2Freadthedocs%2Fguzzle" alt="Documentation Status"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Hint: A nice service is &lt;a href="https://inch-ci.org/learn_more" rel="noopener noreferrer"&gt;Inch CI&lt;/a&gt;, which measures how code is documented and shows the result in a badge. Currently supports JavaScript and Ruby only though.&lt;/p&gt;

&lt;h2&gt;
  
  
  License
&lt;/h2&gt;

&lt;p&gt;Show the license of the package. This is crucial while researching compatible packages.&lt;/p&gt;

&lt;p&gt;Manual:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;[![License](https://img.shields.io/badge/license-mit-blue.svg)](https://github.com/&amp;lt;USER&amp;gt;/&amp;lt;REPOSITORY&amp;gt;/blob/master/&amp;lt;LICENSE FILE&amp;gt;)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;a href="https://github.com/guzzle/guzzle/blob/master/LICENSE" rel="noopener noreferrer"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fimg.shields.io%2Fbadge%2Flicense-mit-blue.svg" alt="License"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;[![License](https://img.shields.io/badge/license-gpl--2.0--or--later-blue.svg)](https://spdx.org/licenses/GPL-2.0-or-later.html)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;a href="https://spdx.org/licenses/GPL-2.0-or-later.html" rel="noopener noreferrer"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fimg.shields.io%2Fbadge%2Flicense-gpl--2.0--or--later-blue.svg" alt="License"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;[![License](https://img.shields.io/badge/license-cc_by--sa_3.0-blue.svg)](https://creativecommons.org/licenses/by-sa/3.0)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;a href="https://creativecommons.org/licenses/by-sa/3.0" rel="noopener noreferrer"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fimg.shields.io%2Fbadge%2Flicense-cc_by--sa_3.0-blue.svg" alt="License"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;From Packagist manifest:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;[![License](https://img.shields.io/packagist/l/&amp;lt;USER&amp;gt;/&amp;lt;PACKAGE&amp;gt;.svg)](https://github.com/&amp;lt;USER&amp;gt;/&amp;lt;REPOSITORY&amp;gt;/blob/master/&amp;lt;LICENSE FILE&amp;gt;)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;a href="https://github.com/guzzle/guzzle/blob/master/LICENSE" rel="noopener noreferrer"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fimg.shields.io%2Fpackagist%2Fl%2Fguzzlehttp%2Fguzzle.svg" alt="License"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Contribution
&lt;/h2&gt;

&lt;p&gt;A great part of Open Source is the possibility to let people contribute. Show contributers how to do so and add a link to a contribution guide.&lt;/p&gt;

&lt;p&gt;Manual flags:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;[![Contribution](https://img.shields.io/badge/-help_wanted-brightgreen.svg)](https://github.com/&amp;lt;USER&amp;gt;/&amp;lt;REPOSITORY&amp;gt;/blob/master/&amp;lt;CONTRIBUTION FILE&amp;gt;)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;a href="https://github.com/sebastianbergmann/phpunit/blob/master/.github/CONTRIBUTING.md" rel="noopener noreferrer"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fimg.shields.io%2Fbadge%2F-help_wanted-brightgreen.svg" alt="Contribution"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;[![Contribution](https://img.shields.io/badge/-contributions_welcome-brightgreen.svg)](https://github.com/&amp;lt;USER&amp;gt;/&amp;lt;REPOSITORY&amp;gt;/blob/master/&amp;lt;CONTRIBUTION FILE&amp;gt;)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;a href="https://github.com/sebastianbergmann/phpunit/blob/master/.github/CONTRIBUTING.md" rel="noopener noreferrer"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fimg.shields.io%2Fbadge%2F-contributions_welcome-brightgreen.svg" alt="Contribution"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;From GitHub contributors counter:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;[![Contributors](https://img.shields.io/github/contributors/&amp;lt;USER&amp;gt;/&amp;lt;REPOSITORY&amp;gt;.svg)](https://gitHub.com/&amp;lt;USER&amp;gt;/&amp;lt;REPOSITORY&amp;gt;/graphs/contributors/)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;a href="https://gitHub.com/guzzle/guzzle/graphs/contributors/" rel="noopener noreferrer"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fimg.shields.io%2Fgithub%2Fcontributors%2Fguzzle%2Fguzzle.svg" alt="Contributors"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Another nice way to encourage contributions is the &lt;a href="https://www.firsttimersonly.com/" rel="noopener noreferrer"&gt;First Timers Friendly&lt;/a&gt; badge and a link to issues tagged with &lt;code&gt;first-timers-only&lt;/code&gt; or &lt;code&gt;contribute&lt;/code&gt;.&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;[![First Timers Friendly](https://img.shields.io/badge/first--timers--only-friendly-blue.svg)](https://github.com/&amp;lt;USER&amp;gt;/&amp;lt;REPOSITORY&amp;gt;/labels/contribute)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;a href="https://github.com/sebastianbergmann/phpunit/contribute" rel="noopener noreferrer"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fimg.shields.io%2Fbadge%2Ffirst--timers--only-friendly-blue.svg" alt="First Timers Friendly"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Code of Conduct
&lt;/h3&gt;

&lt;p&gt;Show all contributors and maintainers of a project the common interest in an open and welcoming community.&lt;/p&gt;

&lt;p&gt;Manual:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;[![Code of Conduct](https://img.shields.io/badge/code_of_conduct-🌐-ff69b4.svg?logoColor=white)](https://github.com/&amp;lt;USER&amp;gt;/&amp;lt;REPOSITORY&amp;gt;/blob/master/&amp;lt;CONTRIBUTION FILE&amp;gt;)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;a href="https://github.com/sebastianbergmann/phpunit/blob/master/.github/CODE_OF_CONDUCT.md" rel="noopener noreferrer"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fimg.shields.io%2Fbadge%2Fcode_of_conduct-%25F0%259F%258C%2590-ff69b4.svg%3FlogoColor%3Dwhite" alt="Code of Conduct"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;A popular code of conduct template is the &lt;a href="https://www.contributor-covenant.org/" rel="noopener noreferrer"&gt;Contributor Covenant&lt;/a&gt;.&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;[![Code of Conduct](https://img.shields.io/badge/Contributor%20Covenant-v2.0%20adopted-ff69b4.svg)](&amp;lt;CODE OF CONDUCT FILE&amp;gt;)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;a href="https://www.contributor-covenant.org/" rel="noopener noreferrer"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fimg.shields.io%2Fbadge%2FContributor%2520Covenant-v2.0%2520adopted-ff69b4.svg" alt="Code of Conduct"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Metrics
&lt;/h2&gt;

&lt;p&gt;Show some metrics like security, dependencies, test coverage, code climate.&lt;/p&gt;

&lt;h2&gt;
  
  
  Discussion
&lt;/h2&gt;

&lt;p&gt;Provide a place where users may discuss how to use the package or fix issues.&lt;/p&gt;

&lt;p&gt;A popular service is &lt;a href="https://gitter.im/" rel="noopener noreferrer"&gt;Gitter&lt;/a&gt; by GitLab. They provide a public chat for any repository. Users need no invitation link and dont need to sign up.&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;[![Discussion](https://img.shields.io/gitter/room/&amp;lt;USER&amp;gt;/&amp;lt;PROJECT&amp;gt;.svg)](https://gitter.im/&amp;lt;USER&amp;gt;/&amp;lt;PROJECT&amp;gt;)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;a href="https://gitter.im/guzzle/guzzle" rel="noopener noreferrer"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fimg.shields.io%2Fgitter%2Froom%2Fguzzle%2Fguzzle.svg" alt="Discussion"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;An alternative is a message board or linking to tags on &lt;a href="https://stackoverflow.com/" rel="noopener noreferrer"&gt;Stack Overflow&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Funding
&lt;/h2&gt;

&lt;p&gt;Show people how to they may support the project financially with donations, sponsorships or subscriptions.&lt;/p&gt;

&lt;p&gt;GitHub allows to add several funding plattforms trough a &lt;a href="https://help.github.com/en/github/administering-a-repository/displaying-a-sponsor-button-in-your-repository" rel="noopener noreferrer"&gt;FUNDING.yml&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Manual:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;[![Funding](https://img.shields.io/badge/donations-welcome-yellow.svg)](https://github.com/&amp;lt;USER&amp;gt;/&amp;lt;REPOSITORY&amp;gt;/blob/master/FUNDING.yml)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;a href="https://github.com/sebastianbergmann/phpunit/blob/master/.github/FUNDING.yml" rel="noopener noreferrer"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fimg.shields.io%2Fbadge%2Fdonations-welcome-yellow.svg" alt="Funding"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;From Liberapay:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;[![Funding](https://img.shields.io/liberapay/patrons/&amp;lt;PROJECT&amp;gt;.svg)](https://liberapay.com/&amp;lt;PROJECT&amp;gt;/donate)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;a href="https://liberapay.com/Mastodon/donate" rel="noopener noreferrer"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fimg.shields.io%2Fliberapay%2Fpatrons%2FMastodon.svg" alt="Funding"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;From Open Collective:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;[![Funding](https://img.shields.io/opencollective/all/&amp;lt;PROJECT&amp;gt;.svg)](https://opencollective.com/&amp;lt;USER&amp;gt;)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;a href="https://opencollective.com/symfony-diversity-scholarship" rel="noopener noreferrer"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fimg.shields.io%2Fopencollective%2Fall%2Fsymfony-diversity-scholarship.svg" alt="Funding"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  &amp;lt;3 Open Source
&lt;/h2&gt;

&lt;p&gt;Spread the love for Open Source.&lt;/p&gt;

&lt;p&gt;Manual:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;[![Open Source Software](https://img.shields.io/badge/open_source-🤍-3DA639.svg)](https://opensource.org/)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;a href="https://opensource.org/" rel="noopener noreferrer"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fimg.shields.io%2Fbadge%2Fopen_source-%25F0%259F%25A4%258D-3DA639.svg" alt="Open Source Software"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Maybe you want to add a link to &lt;a href="https://saythanks.io/" rel="noopener noreferrer"&gt;SayThanks.io&lt;/a&gt;, a project which encourages users to send a simple “thank you“ note to creators of an Open Source package.&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;[![Say Thanks](https://img.shields.io/badge/say-thanks-ff69b4.svg)](https://saythanks.io/to/&amp;lt;USER&amp;gt;)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;a href="https://saythanks.io/to/kennethreitz" rel="noopener noreferrer"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fimg.shields.io%2Fbadge%2Fsay-thanks-ff69b4.svg" alt="Say Thanks"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Generic custom badges
&lt;/h2&gt;

&lt;p&gt;If you want add any more information, then use a custom badge.&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;[![TOPIC](https://img.shields.io/badge/&amp;lt;TOPIC&amp;gt;-&amp;lt;STATUS&amp;gt;-&amp;lt;COLOR&amp;gt;.svg)](https://example.com/)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;a href="https://example.com/" rel="noopener noreferrer"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fimg.shields.io%2Fbadge%2Ftopic-status-green.svg" alt="TOPIC"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Overwrite dynamic badges
&lt;/h2&gt;

&lt;p&gt;You may override the labels, colors and style of all badges by adding some parameter as described in the Shields documentation.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Change title: &lt;code&gt;?label=&amp;lt;TITLE&amp;gt;&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Change color: &lt;code&gt;?color=&amp;lt;HEX&amp;gt;&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Change style: &lt;code&gt;?style=flat-square&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Add an icon from &lt;a href="https://simpleicons.org/" rel="noopener noreferrer"&gt;Simple Icons&lt;/a&gt;: &lt;code&gt;?logo=&amp;lt;NAME&amp;gt;&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>badges</category>
      <category>readme</category>
      <category>opensource</category>
      <category>shields</category>
    </item>
  </channel>
</rss>
