I know you can install packages from any pear channel, and I have this working on a basic pear package
...
"repositories": [
{
"type": "pear",
"url": "http://pear.php.net"
}
],
"require-dev": {
"pear-pear/Mail": "*"
}
...
What I'm trying to do is install a dependency for testing from a different channel.
sudo pear channel-discover phpseclib.sourceforge.net
sudo pear install phpseclib/Net_SSH2
I've tried just about every config combination that I can think of in my composer.json to get this package to install, but it never seems to find anything or work.
What is the correct way/configuration, in my composer.json, to get this package to install?