From dd55c7259153f7cc527a875b279b8846742a1515 Mon Sep 17 00:00:00 2001 From: Marc Qualie Date: Mon, 1 Jun 2015 14:47:47 +0100 Subject: [PATCH] Update documentation for Laravel config --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index dea4a72..d190717 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ Find the `providers` key in your `app/config/app.php` and register the Statsd Se ```php 'providers' => array( // ... - 'League\Statsd\Laravel\Provider\StatsdServiceProvider', + 'League\StatsD\Laravel\Provider\StatsdServiceProvider', ) ``` @@ -37,7 +37,7 @@ Find the `aliases` key in your `app/config/app.php` and add the Statsd Facade Al ```php 'aliases' => array( // ... - 'Statsd' => 'League\Statsd\Laravel\Facade\StatsdFacade', + 'Statsd' => 'League\StatsD\Laravel\Facade\StatsdFacade', ) ```