From 98819366d04958b08479ef84f734404b5c38128e Mon Sep 17 00:00:00 2001 From: Lexey Felde Date: Sun, 14 May 2017 02:38:13 +0300 Subject: [PATCH] Add changelog --- CHANGELOG.md | 3 +++ README.md | 12 ++++++------ 2 files changed, 9 insertions(+), 6 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..4095923 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,3 @@ +# 1.0.0 (2017-05-14) + +Initial release of the library. \ No newline at end of file diff --git a/README.md b/README.md index 14fc60e..8738451 100644 --- a/README.md +++ b/README.md @@ -16,31 +16,31 @@ composer install tekill/env-diff ## Manual running ### Actualize variables -Compare `.env` with `.env.dist` and add missing variables to `.env` file +Compare `.env` with `.env.dist` and add missing variables to `.env` file. ``` php ./vendor/bin/env-diff actualize ``` -Compare `.env` with `.env.example` and add missing variables to `.env` file +Compare `.env` with `.env.example` and add missing variables to `.env` file. ``` php ./vendor/bin/env-diff actualize .env.example ``` -Compare `.env-target` with `.env.example` and add missing variables to `.env-target` file +Compare `.env-target` with `.env.example` and add missing variables to `.env-target` file. ``` php ./vendor/bin/env-diff actualize .env.example .env-target ``` -If you want to delete outdated values just run command with `-k=false` option +If you want to delete outdated values just run command with `-k=false` option. ``` php ./vendor/bin/env-diff actualize -k=false ``` ### Show differences -Command has same interface, arguments and options +Command has same interface, arguments and options. -Compare `.env` with `.env.dist` and show differences between them +Compare `.env` with `.env.dist` and show differences between them. ``` php ./vendor/bin/env-diff diff ```