Skip to content

Commit

Permalink
Minor edits in README
Browse files Browse the repository at this point in the history
  • Loading branch information
svenluijten committed Jan 23, 2016
1 parent 9d42269 commit f5412db
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,17 +34,23 @@ The commands in this package should now be registered. Simply run `php artisan`,
and you will see them in the list.

```bash
# Set a key/value in your .env file:
# Create or edit an entry in your .env file:
$ php artisan env:set {key} {value} [--line-break|-L]
# Add the --line-break (or -L) option to insert a newline before the entry.
```

# Delete a key/value pair from your .env file:
```bash
# Delete an entry from your .env file:
$ php artisan env:delete {key}
```

# Show the value for the given key from your .env file:
```bash
# Show the value of the given key from your .env file:
$ php artisan env:get {key}
```

# Show the entire .env file.
```bash
# Show the entire .env file:
$ php artisan env:list
```

Expand Down

0 comments on commit f5412db

Please sign in to comment.