From 01dc5ef2a237f7b33602a28ff9ec6d44fcda9d7f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Thu, 3 Dec 2015 16:11:56 +0100 Subject: [PATCH] Document installation using Composer MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit As we seem to be nowhere near being able to provide packages in the official Packagist repository, lets document how to install phpMyAdmin using Composer from our own repository. Fixes #11508 Signed-off-by: Michal Čihař --- doc/setup.rst | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/doc/setup.rst b/doc/setup.rst index a6912cb618..7f5f75a28b 100644 --- a/doc/setup.rst +++ b/doc/setup.rst @@ -87,6 +87,22 @@ which include phpMyAdmin together with a database and web server such as You can find more of such options at `Wikipedia `_. +Installing using Composer ++++++++++++++++++++++++++ + +You can install phpMyAdmin using `Composer `_, +however it's currently not available in the default +`Packagist `_ repository due to its technical +limitations. + +The installation is possible by adding our own repository +: + +.. code-block:: sh + + composer create-project phpmyadmin/phpmyadmin --repository-url=https://www.phpmyadmin.net/packages.json + + .. _quick_install: Quick Install