{"id":15650136,"url":"https://github.com/vyuldashev/flysystem-curlftp","last_synced_at":"2025-11-06T22:04:00.184Z","repository":{"id":20480342,"uuid":"90028075","full_name":"vyuldashev/flysystem-curlftp","owner":"vyuldashev","description":"Flysystem Adapter for the FTP with cURL implementation","archived":false,"fork":false,"pushed_at":"2023-09-12T03:01:07.000Z","size":99,"stargazers_count":36,"open_issues_count":4,"forks_count":23,"subscribers_count":6,"default_branch":"master","last_synced_at":"2025-10-02T08:22:13.477Z","etag":null,"topics":["curl","filesystem","filesystem-library","flysystem","ftp","implicit-ssl","php","thephpleague"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/vyuldashev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-05-02T11:53:01.000Z","updated_at":"2024-09-29T03:41:01.000Z","dependencies_parsed_at":"2024-06-19T09:17:12.364Z","dependency_job_id":"41272569-55d1-4ecb-bb79-7722284c9f95","html_url":"https://github.com/vyuldashev/flysystem-curlftp","commit_stats":{"total_commits":129,"total_committers":16,"mean_commits":8.0625,"dds":0.5581395348837209,"last_synced_commit":"8c0869f4aacd46414cb8b0d6530cc9d62525993d"},"previous_names":[],"tags_count":12,"template":false,"template_full_name":null,"purl":"pkg:github/vyuldashev/flysystem-curlftp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vyuldashev%2Fflysystem-curlftp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vyuldashev%2Fflysystem-curlftp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vyuldashev%2Fflysystem-curlftp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vyuldashev%2Fflysystem-curlftp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vyuldashev","download_url":"https://codeload.github.com/vyuldashev/flysystem-curlftp/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vyuldashev%2Fflysystem-curlftp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":283088978,"owners_count":26777363,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-11-06T02:00:06.180Z","response_time":55,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["curl","filesystem","filesystem-library","flysystem","ftp","implicit-ssl","php","thephpleague"],"created_at":"2024-10-03T12:33:34.277Z","updated_at":"2025-11-06T22:04:00.147Z","avatar_url":"https://github.com/vyuldashev.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Flysystem Adapter for the FTP with cURL implementation\n\n[![Latest Stable Version](https://poser.pugx.org/vladimir-yuldashev/flysystem-curlftp/v/stable?format=flat-square)](https://packagist.org/packages/vladimir-yuldashev/flysystem-curlftp)\n[![Build Status](https://github.com/vyuldashev/flysystem-curlftp/workflows/Tests/badge.svg)](https://github.com/vyuldashev/flysystem-curlftp/actions)\n[![StyleCI](https://styleci.io/repos/90028075/shield?branch=master)](https://styleci.io/repos/90028075)\n[![License](https://poser.pugx.org/vladimir-yuldashev/flysystem-curlftp/license?format=flat-square)](https://packagist.org/packages/vladimir-yuldashev/flysystem-curlftp)\n\nThis package contains a [Flysystem](https://flysystem.thephpleague.com/) FTP adapter with cURL implementation.\nIt supports both explicit and implicit SSL connections.\n\n## Installation\n\nYou can install the package via composer:\n\n``` bash\ncomposer require vladimir-yuldashev/flysystem-curlftp\n```\n\n## Usage\n\n``` php\nuse League\\Flysystem\\Filesystem;\nuse VladimirYuldashev\\Flysystem\\CurlFtpAdapter;\n\n$adapter = new CurlFtpAdapter([\n  'host' =\u003e 'ftp.example.com',\n  'username' =\u003e 'username',\n  'password' =\u003e 'password',\n\n  /** optional config settings */\n  'port' =\u003e 21,\n  'root' =\u003e '/path/to/root',\n  'utf8' =\u003e true,\n  'ftps' =\u003e true, // use ftps:// with implicit TLS or ftp:// with explicit TLS\n  'ssl' =\u003e true,\n  'timeout' =\u003e 90, // connect timeout\n  'passive' =\u003e true, // default use PASV mode\n  'skipPasvIp' =\u003e true, // ignore the IP address in the PASV response \n  'sslVerifyPeer' =\u003e 0, // using 0 is insecure, use it only if you know what you're doing\n  'sslVerifyHost' =\u003e 0, // using 0 is insecure, use it only if you know what you're doing\n  'enableTimestampsOnUnixListings' =\u003e true,\n  \n  /** proxy settings */\n  'proxyHost' =\u003e 'proxy-server.example.com',\n  'proxyPort' =\u003e 80,\n  'proxyUsername' =\u003e 'proxyuser',\n  'proxyPassword' =\u003e 'proxypassword',\n  \n  'verbose' =\u003e false // set verbose mode on/off \n]);\n\n$filesystem = new Filesystem($adapter);\n``` \n\n## Testing\n\n``` bash\n$ composer test\n```\n\n## License\n\nThe MIT License (MIT). Please see [License File](LICENSE) for more information.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvyuldashev%2Fflysystem-curlftp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvyuldashev%2Fflysystem-curlftp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvyuldashev%2Fflysystem-curlftp/lists"}