Created
May 4, 2018 10:36
-
-
Save madumlao/27c34d10cfb32db7901f620c0dd6f7ee to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# rbenv | |
export PATH="$HOME/.rbenv/bin:$PATH" | |
eval "$(rbenv init -)" | |
# jenv | |
export PATH="$HOME/.jenv/bin:$PATH" | |
eval "$(jenv init -)" | |
# compose | |
export PATH="$HOME/.composer/vendor/bin:$PATH" | |
# phpenv | |
export PATH="$HOME/.phpenv/bin:$PATH" | |
eval "$(phpenv init -)" | |
# php-build | |
export PHP_BUILD_CONFIGURE_OPTS="--with-ldap=/usr --with-ldap-sasl=/usr --with-mcrypt=/usr --with-mhash=/usr --with-mysql-sock=/run/mysqld/mysqld.sock" | |
export PHP_BUILD_INSTALL_EXTENSION="mysqlnd ctype exif fileinfo ftp gettext iconv json mysqli mysqlnd opcache pdo_mysql pdo phar posix readline shmop sockets sysvmsg sysvsem sysvshm tokenizer" | |
# nenv | |
export PATH="$HOME/.nenv/bin:$PATH" | |
eval "$(nenv init -)" | |
# pyenv | |
export PATH="$HOME/.pyenv/bin:$PATH" | |
eval "$(pyenv init -)" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment