Skip to content

Commit 3ce7547

Browse files
committedJan 29, 2018
update documentation
1 parent 8aa774b commit 3ce7547

File tree

2 files changed

+22
-22
lines changed

2 files changed

+22
-22
lines changed
 

‎README.md

+11-11
Original file line numberDiff line numberDiff line change
@@ -31,28 +31,28 @@ phpenv conf [OPTION] [<cfgini|extini|extname|conf>]
3131

3232
```bash
3333
#add local general-purpose config ini file (ex.: defining timezone)
34-
phpenv conf -c|--cfg-add <cfg-ini>
34+
phpenv conf -c|--cfg-add <cfg-file>
3535

3636
#add a local extension config ini file (ex.: igbinary.ini, tidy.ini, etc)
37-
phpenv conf -x|--ext-add <ext-ini>
37+
phpenv conf -x|--ext-add <ext-file>
3838

39-
#create new extension config file containing "extension=<extname>.so"
39+
#create new extension config file from name (containing "extension=<extname>.so")
4040
phpenv conf -X|--ext-new <ext-name>
4141

42-
#remove config completely (from active config and available config dirs)
43-
phpenv conf -r|--rm <conf.ini>
42+
#remove installed config completely (from active config and available config dirs)
43+
phpenv conf -r|--rm <cfg-name>
4444

45-
#enable config (by symlinking from available dir)
46-
phpenv conf -e|--enable <conf>
45+
#enable installed config (by symlinking from available dir)
46+
phpenv conf -e|--enable <cfg-name>
4747

48-
#disable config (by removing enabled symlink)
49-
phpenv conf -d|--disable <conf>
48+
#disable installed config (by removing enabled symlink)
49+
phpenv conf -d|--disable <cfg-name>
5050

5151
#list both enabled and disabled configs
5252
phpenv conf -l|--list
5353

54-
#display the file contents of a config file
55-
phpenv conf -s|--show <conf>
54+
#display installed config file contents
55+
phpenv conf -s|--show <cfg-name>
5656

5757
#show version of php-congig (including current git hash)
5858
phpenv conf -V|--version

‎bin/phpenv-conf

+11-11
Original file line numberDiff line numberDiff line change
@@ -14,28 +14,28 @@
1414
#
1515
# Options:
1616
# #add local general-purpose config ini file (ex.: defining timezone)
17-
# phpenv conf -c|--cfg-add <cfg-ini>
17+
# phpenv conf -c|--cfg-add <cfg-file>
1818
#
1919
# #add a local extension config ini file (ex.: igbinary.ini, tidy.ini, etc)
20-
# phpenv conf -x|--ext-add <ext-ini>
20+
# phpenv conf -x|--ext-add <ext-file>
2121
#
22-
# #create new extension config file containing "extension=<extname>.so"
22+
# #create new extension config file from name (containing "extension=<extname>.so")
2323
# phpenv conf -X|--ext-new <ext-name>
2424
#
25-
# #remove config completely (from active config and available config dirs)
26-
# phpenv conf -r|--rm <conf.ini>
25+
# #remove installed config completely (from active config and available config dirs)
26+
# phpenv conf -r|--rm <cfg-name>
2727
#
28-
# #enable config (by symlinking from available dir)
29-
# phpenv conf -e|--enable <conf>
28+
# #enable installed config (by symlinking from available dir)
29+
# phpenv conf -e|--enable <cfg-name>
3030
#
31-
# #disable config (by removing enabled symlink)
32-
# phpenv conf -d|--disable <conf>
31+
# #disable installed config (by removing enabled symlink)
32+
# phpenv conf -d|--disable <cfg-name>
3333
#
3434
# #list both enabled and disabled configs
3535
# phpenv conf -l|--list
3636
#
37-
# #display the file contents of a config file
38-
# phpenv conf -s|--show <conf>
37+
# #display installed config file contents
38+
# phpenv conf -s|--show <cfg-name>
3939
#
4040
# #show version of php-congig (including current git hash)
4141
# phpenv conf -V|--version

0 commit comments

Comments
 (0)
Please sign in to comment.