File tree 2 files changed +9
-6
lines changed
2 files changed +9
-6
lines changed Original file line number Diff line number Diff line change
1
+ # 1.0.0 (2017-05-14)
2
+
3
+ Initial release of the library.
Original file line number Diff line number Diff line change @@ -16,31 +16,31 @@ composer install tekill/env-diff
16
16
17
17
## Manual running
18
18
### Actualize variables
19
- Compare ` .env ` with ` .env.dist ` and add missing variables to ` .env ` file
19
+ Compare ` .env ` with ` .env.dist ` and add missing variables to ` .env ` file.
20
20
```
21
21
php ./vendor/bin/env-diff actualize
22
22
```
23
23
24
- Compare ` .env ` with ` .env.example ` and add missing variables to ` .env ` file
24
+ Compare ` .env ` with ` .env.example ` and add missing variables to ` .env ` file.
25
25
```
26
26
php ./vendor/bin/env-diff actualize .env.example
27
27
```
28
28
29
- Compare ` .env-target ` with ` .env.example ` and add missing variables to ` .env-target ` file
29
+ Compare ` .env-target ` with ` .env.example ` and add missing variables to ` .env-target ` file.
30
30
```
31
31
php ./vendor/bin/env-diff actualize .env.example .env-target
32
32
```
33
33
34
- If you want to delete outdated values just run command with ` -k=false ` option
34
+ If you want to delete outdated values just run command with ` -k=false ` option.
35
35
36
36
```
37
37
php ./vendor/bin/env-diff actualize -k=false
38
38
```
39
39
40
40
### Show differences
41
- Command has same interface, arguments and options
41
+ Command has same interface, arguments and options.
42
42
43
- Compare ` .env ` with ` .env.dist ` and show differences between them
43
+ Compare ` .env ` with ` .env.dist ` and show differences between them.
44
44
```
45
45
php ./vendor/bin/env-diff diff
46
46
```
You can’t perform that action at this time.
0 commit comments