PHPackages                             osumionline/plugin-ftp - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Framework](/categories/framework)
4. /
5. osumionline/plugin-ftp

ActiveLibrary[Framework](/categories/framework)

osumionline/plugin-ftp
======================

Plugin OFTP para Osumi Framework

3.0.0(1y ago)018MITPHPPHP &gt;=8.2

Since Sep 2Pushed 1y ago1 watchersCompare

[ Source](https://github.com/osumionline/plugin-ftp)[ Packagist](https://packagist.org/packages/osumionline/plugin-ftp)[ RSS](/packages/osumionline-plugin-ftp/feed)WikiDiscussions main Synced 2d ago

READMEChangelog (1)DependenciesVersions (2)Used By (0)

Osumi Framework Plugins: `OFTP`

Este plugin añade la clase `OFTP` al framework con la que se puede conectar a servidores remotos mediante FTP y realizar las acciones más típicas (moverse por el servidor, subir o bajar archivos, borrarlos...).

```
$ftp = new OFTP('host', 'user', 'password');

// Abrir conexión
if ($ftp->connect()) {
  echo "Conexión abierta al servidor remoto.";
}

// Iniciar sesión
if ($ftp->login()) {
  echo "Sesión iniciada."
}

// Establecer conexión pasiva
$ftp->passive(true);

// Desconectar la conexión automaticamente tras realizar un comando
$ftp->autoDisconnect(true);

// Establecer modo de conexión ('ascii' / 'bin')
$ftp->mode('bin');

// Comprobar si la conexión sigue abierta y reconectar en caso contrario
$ftp->checkConnection();

// Subir un archivo al servidor remoto
if ($ftp->put('/local/path/to/file.txt', '/remote/path/to/file.txt')) {
  echo "Archivo subido correctamente.";
}

// Descargar un archivo del servidor remoto
if ($ftp->get('/remote/path/to/file.txt', '/local/path/to/file.txt')) {
  echo "Archivo descargado correctamente.";
}

// Borrar un archivo del servidor remoto
if ($ftp->delete('/remote/path/to/file.txt')) {
  echo "Archivo borrado correctamente.";
}

// Cambiar de ruta en el servidor remoto
if ($ftp->chdir('/remote/path/')) {
  echo "Ruta cambiada correctamente.";
}

// Crear una carpeta en el servidor remoto
if ($ftp->mkdir('/remote/path/new/')) {
  echo "Carpeta creada correctamente.";
}

// Cerrar conexión al servidor remoto.
$ftp->disconnect();
```

###  Health Score

27

—

LowBetter than 47% of packages

Maintenance33

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity52

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 66.7% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

670d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/156799685?v=4)[Osumi](/maintainers/osumionline)[@osumionline](https://github.com/osumionline)

---

Top Contributors

[![igorosabel](https://avatars.githubusercontent.com/u/633864?v=4)](https://github.com/igorosabel "igorosabel (2 commits)")[![osumionline](https://avatars.githubusercontent.com/u/156799685?v=4)](https://github.com/osumionline "osumionline (1 commits)")

### Embed Badge

![Health badge](/badges/osumionline-plugin-ftp/health.svg)

```
[![Health](https://phpackages.com/badges/osumionline-plugin-ftp/health.svg)](https://phpackages.com/packages/osumionline-plugin-ftp)
```

###  Alternatives

[laravel/dusk

Laravel Dusk provides simple end-to-end testing and browser automation.

1.9k39.6M297](/packages/laravel-dusk)[nineinchnick/edatatables

Grid widget for the Yii Framework, wrapper for the DataTables jQuery plugin

173.2k](/packages/nineinchnick-edatatables)[link-cloud/fast-hyperf

LinkCloud Fast Hyperf

241.2k1](/packages/link-cloud-fast-hyperf)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
