<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/install.pecl.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'en',
  ),
  'this' => 
  array (
    0 => 'install.pecl.downloads.php',
    1 => 'Downloading PECL extensions',
    2 => 'Downloading PECL extensions',
  ),
  'up' => 
  array (
    0 => 'install.pecl.php',
    1 => 'Installation of PECL extensions',
  ),
  'prev' => 
  array (
    0 => 'install.pecl.intro.php',
    1 => 'Introduction to PECL Installations',
  ),
  'next' => 
  array (
    0 => 'install.pecl.windows.php',
    1 => 'Installing a PHP extension on Windows',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'install/pecl.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="install.pecl.downloads" class="sect1">
  <h2 class="title">Downloading PECL extensions</h2>
  <blockquote class="note"><p><strong class="note">Note</strong>: 
 <span class="simpara">
  PHP Installer for Extensions (<abbr>PIE</abbr>) is a new tool that will deprecate PECL.
  We recommend using PIE to install extensions.
  Find out more at <a href="https://github.com/php/pie" class="link external">&raquo;&nbsp;https://github.com/php/pie</a>
 </span>
</p></blockquote>
  <p class="simpara">
   There are several options for downloading PECL extensions, such as:
  </p>
  <ul class="itemizedlist">
   <li class="listitem">
    <span class="simpara">
     The <strong class="command">pecl install extname</strong> command downloads the
     extensions code automatically, so in this case, there is no need for a
     separate download.
    </span>
   </li>
   <li class="listitem">
    <span class="simpara">
     <a href="https://pecl.php.net/" class="link external">&raquo;&nbsp;https://pecl.php.net/</a>
    </span>
    <span class="simpara">
     The PECL website contains information about the different extensions that
     are offered by the PHP Development Team.
     The information available here includes: changelog, release notes,
     requirements, and other similar details.
    </span>
   </li>
   <li class="listitem">
    <span class="simpara">
     <strong class="command">pecl download extname</strong>
    </span>
    <span class="simpara">
     PECL extensions that have releases listed on the PECL website are available
     for download and installation using the
     <a href="https://pear.php.net/manual/en/guide.users.commandline.cli.php" class="link external">&raquo;&nbsp;pecl command</a>.
     Specific revisions may also be specified.
    </span>
   </li>
   <li class="listitem">
    <span class="simpara">
     <abbr>git</abbr>
    </span>
    <span class="simpara">
     Many PECL extensions reside on GitHub.
     
    </span>
   </li>
   <li class="listitem">
    <span class="simpara">
     <abbr>SVN</abbr>
    </span>
    <span class="simpara">
     Some PECL extensions also reside in <abbr>SVN</abbr>.
     A web-based view may be seen at
     <a href="https://svn.php.net/pecl/" class="link external">&raquo;&nbsp;https://svn.php.net/pecl/</a>.
     To download straight from <abbr>SVN</abbr>,
     the following sequence of commands may be used:
    </span>
    <div class="example-contents screen">
<div class="cdata"><pre>
$ svn checkout https://svn.php.net/repository/pecl/extname/trunk extname
</pre></div>
    </div>
   </li>
   <li class="listitem">
    <span class="simpara">
     Windows downloads
    </span>
    <span class="simpara">
     The PHP project compiles and offers Windows DLLs for most PECL extensions
     on the package page.
    </span>
   </li>
  </ul>
 </div><?php manual_footer($setup); ?>