1
0
mirror of https://github.com/danog/php-libtgvoip.git synced 2024-11-30 04:19:26 +01:00
Go to file
Daniil Gentili 1ec3bcd414 Create CNAME
2017-08-16 16:00:28 +02:00
.vscode Debugging conf and libtgvoip improvements 2017-08-03 16:51:47 +02:00
audio Bugfixes and nice stack traces 2017-07-26 08:31:52 +02:00
backward-cpp@857bc8fc31 Bugfixes and nice stack traces 2017-07-26 08:31:52 +02:00
libtgvoip@b03fc6c75b Actually parse shared config changes 2017-08-05 17:35:12 +02:00
_config.yml Set theme jekyll-theme-hacker 2017-08-16 15:47:51 +02:00
.gitignore Started working on custom audio modules 2017-06-18 18:32:20 +01:00
.gitmodules Bugfixes and nice stack traces 2017-07-26 08:31:52 +02:00
CNAME Create CNAME 2017-08-16 16:00:28 +02:00
libtgvoip.ini First commit 2017-04-05 03:46:16 +02:00
LICENSE First commit 2017-04-05 03:46:16 +02:00
main.cpp Update versiong 2017-08-09 00:07:34 +02:00
main.h Simplification 2017-08-03 18:34:53 +02:00
Makefile openssl fixes 2017-08-05 07:22:22 +00:00
README.md Update README.md 2017-08-16 15:49:31 +02:00

php-libtgvoip

Licensed under AGPLV3, created by Daniil Gentili.

This is a PHP extension that wraps the telegram VoIP library, created using php-cpp.

Installation:

Install the libopus headers (libopus-dev), binutils (binutils-dev), openssl headers and the php-cpp headers. Then clone this repository recursively and run make && sudo make install

On Ubuntu/debian/any debian-based distro:

sudo apt-get install libopus-dev binutils-dev libssl-dev
git clone https://github.com/CopernicaMarketingSoftware/PHP-CPP
cd PHP-CPP
make -j$(nproc)
sudo make install
cd ..
git clone --recursive https://github.com/danog/php-libtgvoip
cd php-libtgvoip
make -j$(nproc)
sudo make install