diff --git a/README.md b/README.md index 0e27ffe..12773cb 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ You can easily keep your log files anywhere since it uses [Flysystem](https://fl ## Installation The best way to install this package is via composer. You can do it from the command line or -add `"wappr/logger": "0.1.0"` to the required section of your `composer.json`. You can find +add `"wappr/logger": "^1.0"` to the required section of your `composer.json`. You can find examples for both ways below. ### Composer Command Line @@ -24,7 +24,7 @@ composer require wappr/logger ```json { "require": { - "wappr/logger": "0.1.0" + "wappr/logger": "^1.0" } } ``` diff --git a/composer.json b/composer.json index 45ee238..20a8d2b 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "name": "wappr/logger", "description": "A PSR-3 logger that uses Flysystem.", - "version": "0.1.0", + "version": "1.0.0", "license": "MIT", "keywords": ["psr", "psr-3", "logger", "wappr", "flysystem", "s3", "aws", "azure", "ftp", "gridfs"], "autoload": { diff --git a/src/Logger.php b/src/Logger.php index d36e0fb..8b73ac7 100644 --- a/src/Logger.php +++ b/src/Logger.php @@ -11,7 +11,7 @@ * * @author Levi Durfee * - * @version 0.1.0 + * @version 1.0.0 */ class Logger extends AbstractLogger {