I decided to install the new PHP7. Due to the old raspbian repository, it was impossible to apt-get install
it. Ondrej's ppa wouldnt work either, because there is no wheezy upload.
Everything went fine and my Apache is connected with PHP7, so it runs now. But I've found out, that there is no SSH2-Module installed. I need that for dependencies I'm not able to change :/
So here is what I've tried:
wget https://pecl.php.net/get/ssh2-0.12.tgz
tar -xzf ssh2-0.12.tgz -C /
phpize
./configure
sudo make && make install
--> pecl/ssh2 requires PHP (version >= 4.0.0, version <= 6.0.0), installed version is 7.0.0RC4
Okay, there seems to be a problem with my PHP-Version. So i searched for it and found out. there is a new versio available at https://github.com/php/pecl-networking-ssh2/pull/7
So I downloaded this, installed this and then tried
pecl install -f ssh2
Then this PECL decided to download the original 0.12 Version which i already tried above. Nice miracle.
Any help is VERY appreciated! Thanks :)