Installing from Git ΒΆ
In order to install from Git, you'll need a few supporting applications:
- Git to download the source, or you can download the most recent source directly from Github
- Composer
- Node.js (version 8 or higher)
- Yarn
You can clone current phpMyAdmin source from https://github.com/phpmyadmin/phpmyadmin.git
:
git clone https://github.com/phpmyadmin/phpmyadmin.git
Additionally you need to install dependencies using Composer:
composer update
If you do not intend to develop, you can skip the installation of developer tools by invoking:
composer update --no-dev
Finally, you'll need to use Yarn to install some JavaScript dependencies:
yarn install