@@ -31,28 +31,28 @@ phpenv conf [OPTION] [<cfgini|extini|extname|conf>]
31
31
32
32
``` bash
33
33
# 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 >
35
35
36
36
# 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 >
38
38
39
- # create new extension config file containing "extension=<extname>.so"
39
+ # create new extension config file from name ( containing "extension=<extname>.so")
40
40
phpenv conf -X| --ext-new < ext-name>
41
41
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 >
44
44
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 >
47
47
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 >
50
50
51
51
# list both enabled and disabled configs
52
52
phpenv conf -l| --list
53
53
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 >
56
56
57
57
# show version of php-congig (including current git hash)
58
58
phpenv conf -V| --version
0 commit comments