Skip to content

Commit

Permalink
Update composer config to use new repo location
Browse files Browse the repository at this point in the history
  • Loading branch information
bfeaver committed Feb 28, 2021
1 parent fac2dbf commit 75157c1
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@

A PHP client library for the statistics daemon ([statsd](https://github.com/etsy/statsd)) intended to send metrics from PHP applications.

[![Build Status](https://github.com/domnikl/statsd-php/workflows/Build%20statsd-php/badge.svg)](https://github.com/domnikl/statsd-php/actions)
[![Donate](https://img.shields.io/badge/donate-paypal-blue.svg?style=flat-square)](https://paypal.me/DominikLiebler)
[![Build Status](https://github.com/slickdeals/statsd-php/workflows/Build%20statsd-php/badge.svg)](https://github.com/slickdeals/statsd-php/actions)

Originally a fork of https://github.com/domnikl/statsd-php and original author Dominik Liebler. The Slickdeals team has
taken over the project.

## Installation

Expand All @@ -12,7 +14,7 @@ The best way to install statsd-php is to use Composer and add the following to y
```javascript
{
"require": {
"domnikl/statsd": "~3.0"
"slickdeals/statsd": "~3.0"
}
}
```
Expand Down Expand Up @@ -103,4 +105,4 @@ to use `Domnikl\Statsd\Connection\InMemory` connection class, that will collect
## Authors

Original author: Dominik Liebler <[email protected]>
Several other [contributors](https://github.com/domnikl/statsd-php/graphs/contributors) - Thank you!
Several other [contributors](https://github.com/slickdeals/statsd-php/graphs/contributors) - Thank you!
7 changes: 5 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "domnikl/statsd",
"name": "slickdeals/statsd",
"type": "library",
"description": "a PHP client for statsd",
"keywords": [
Expand All @@ -9,7 +9,7 @@
"metrics",
"udp"
],
"homepage": "https://domnikl.github.com/statsd-php",
"homepage": "https://github.com/Slickdeals/statsd-php",
"license": "MIT",
"authors": [
{
Expand All @@ -34,5 +34,8 @@
"psr-4": {
"Domnikl\\Test\\Statsd\\": "tests/unit"
}
},
"replace": {
"domnikl/statsd": "self.version"
}
}

0 comments on commit 75157c1

Please sign in to comment.