<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/ds.setup.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'tr',
  ),
  'this' => 
  array (
    0 => 'ds.installation.php',
    1 => 'Kurulum',
    2 => 'Kurulum',
  ),
  'up' => 
  array (
    0 => 'ds.setup.php',
    1 => 'Yapılandırma/Kurulum',
  ),
  'prev' => 
  array (
    0 => 'ds.requirements.php',
    1 => 'Gereksinimler',
  ),
  'next' => 
  array (
    0 => 'ds.examples.php',
    1 => '&Ouml;rnekler',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/ds/setup.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="ds.installation" class="section">
  <h2 class="title">Kurulum</h2>
  <p class="para">
     The easiest way to install the extension is via <a href="https://pecl.php.net/package/ds" class="link external">&raquo;&nbsp;PECL</a>
   <div class="example-contents screen">
<div class="cdata"><pre>
pecl install ds
</pre></div>
   </div>
</p>

   <p class="para">
     You can also build directly from source:

    <div class="example-contents screen">
<div class="cdata"><pre>
# Dependencies you might need to install
# sudo apt-get install git build-essential php7.0-dev

git clone https://github.com/php-ds/extension &quot;php-ds&quot;
cd php-ds

# Build and install the extension
phpize
./configure
make
make install

# Clean up the build files
make clean
phpize --clean
</pre></div>
   </div>

  </p>

  <blockquote class="note"><p><strong class="note">Bilginize</strong>: 
    <p class="para">
        If you&#039;re using Composer, it&#039;s highly recommended that you include
        <a href="https://packagist.org/packages/php-ds/php-ds" class="link external">&raquo;&nbsp;php-ds/php-ds</a>
        in your project so that your code is still functional in an environment where the
        extension is not installed. The extension will take priority if installed.
    </p>
  </p></blockquote>
 </div><?php manual_footer($setup); ?>