Skip to content
/ phpenv Public

Simple installer for phpenv, leveraging the sstephenson/rbenv project at its core, with optional installation of the php-build and php-conf plug-ins.

License

Notifications You must be signed in to change notification settings

src-run/phpenv

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

phpenv

Installer for phpenv, which leverages the great sstephenson/rbenv project at its core (with optional installation of the php-build and php-conf plug-ins). Additionally, the required build-deps for PHP can be installed during script execution.

Installation

Single Command Install: You can use this installer script without cloning the repository yourself by calling the following command:

curl -s https://raw.githubusercontent.com/src-run/phpenv/master/bin/phpenv-installer-remote.bash | bash

Clone Repository Yourself: Alternatively, you can clone the repository yourself and execute the installer script:

git clone --recurse-submodules https://github.com/src-run/phpenv.git
bash phpenv/bin/phpenv-installer.bash

phpenv Usage

The phpenv-install.sh command sets up a separate rbenv for usage with PHP. This environment is stored in the $HOME/.phpenv directory and contains a phpenv executable which sets the PHPENV_ROOT environment variable to $HOME/.phpenv.

To install PHP versions, you can either put compiled version within the $HOME/.phpenv/versions directory, or (if you installed the php-build plug-in) you can use the following commands:

phpenv install -l     # list available versions
phpenv install 7.1.13 # installed php version 7.1.13
phpenv rehash         # refresh installed versions
phpenv global 7.1.13  # set 7.1.13 as global active version
php -v                # outputs version 7.1.13 info
phpenv global system  # go back to the system-installed php version

About

Simple installer for phpenv, leveraging the sstephenson/rbenv project at its core, with optional installation of the php-build and php-conf plug-ins.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages