From 75157c19e956f5ef0cf7def78456fc1deb095a02 Mon Sep 17 00:00:00 2001 From: Brian Feaver Date: Sat, 27 Feb 2021 18:56:39 -0800 Subject: [PATCH] Update composer config to use new repo location --- README.md | 10 ++++++---- composer.json | 7 +++++-- 2 files changed, 11 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 16ce9eb..c9dd267 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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" } } ``` @@ -103,4 +105,4 @@ to use `Domnikl\Statsd\Connection\InMemory` connection class, that will collect ## Authors Original author: Dominik Liebler -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! diff --git a/composer.json b/composer.json index bc6a5d0..ab45c1e 100644 --- a/composer.json +++ b/composer.json @@ -1,5 +1,5 @@ { - "name": "domnikl/statsd", + "name": "slickdeals/statsd", "type": "library", "description": "a PHP client for statsd", "keywords": [ @@ -9,7 +9,7 @@ "metrics", "udp" ], - "homepage": "https://domnikl.github.com/statsd-php", + "homepage": "https://github.com/Slickdeals/statsd-php", "license": "MIT", "authors": [ { @@ -34,5 +34,8 @@ "psr-4": { "Domnikl\\Test\\Statsd\\": "tests/unit" } + }, + "replace": { + "domnikl/statsd": "self.version" } }