logifire / ftps-deploy
Simple FTPS deployment tool
Requires
- php: >=8.0
- ext-ftp: *
This package is auto-updated.
Last update: 2025-05-06 19:00:38 UTC
README
A simple PHP deployment tool that uses FTPS to upload changed files to a remote server. It tracks file changes using MD5 hashes and only uploads modified files.
Features
- FTPS secure file transfer
- Tracks file changes using MD5 hashes
- Only uploads modified files
- Supports file/directory ignore patterns
- Creates remote directories automatically
- Passive mode FTP support
Installation
Install via Composer:
composer require logifire/ftps-deploy
Configuration
You can initialize a template configuration file by running:
vendor/bin/deploy.php init
This will create a deploy-config.php
file in your project root which you can then edit with your FTPS credentials.
Otherwise, create a deploy-config.php
file manually in your project root:
<?php return [ // FTP connection settings 'host' => 'example.com', 'port' => 21, 'username' => 'your-username', 'password' => 'your-password', // Local and remote paths 'local_path' => __DIR__, // Current directory 'remote_path' => '/public_html', // Remote path // Files/folders to ignore (supports wildcards) 'ignore_patterns' => [ '.git', '.gitignore', 'node_modules', 'vendor', '*.log', 'tests' ] ];
Usage
Run deployment using:
vendor/bin/deploy.php
Requirements
- PHP 8.0 or higher
- PHP FTP extension
- FTPS-enabled hosting
License
This project is licensed under the GNU General Public License v3.0 - see the LICENSE file for details.
Note: This library, including its code, documentation, and this README, was generated with the assistance of AI.