Welcome to mirror list, hosted at ThFree Co, Russian Federation.

xdebug_install.sh « build - github.com/nextcloud/gallery.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0a8529eb947a20e72d5cd41608347dd4f36904a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env bash
# Installs the latest xdebug extensions
#

## Official builds
wget http://pecl.php.net/get/xdebug
mkdir xdebug-extension
tar zxvf xdebug -C xdebug-extension --strip-components=1

## Git master
#git clone https://github.com/xdebug/xdebug.git xdebug-extension
#cd xdebug-extension

phpize
./configure
make -j4
make install