Brige is a common interface to comuncate with a server through FTP and SFTP. SFTP support requires the php_ssh2
PHP extension.
##Installation
The recommended way to install Bridge is through Composer.
composer require banago/bridge
Or
{
"require": {
"banago/bridge": "dev-master",
}
}
<?php
require __DIR__.'/vendor/autoload.php';
use Banago\Bridge\Bridge;
$conn = new Bridge('ftp:https://ftp.funet.fi');
//List directory contents
print_r($conn->ls());
//Display contents of the README file
echo $conn->get('README');
LGPL v3
Brige is a fork of Connection.php project created by Tuomas Angervuori. Brige is further developed and actively maintained by Baki Goxhaj as part of the PHPloy project.