All Projects → neoxia → Laravel Sftp

neoxia / Laravel Sftp

Licence: mit
SFTP filesystem service provider for Laravel

Projects that are alternatives of or similar to Laravel Sftp

Vat Calculator
Handle all the hard stuff related to EU MOSS tax/vat regulations, the way it should be. Integrates with Laravel and Cashier — or in a standalone PHP application.
Stars: ✭ 876 (+3028.57%)
Mutual labels:  laravel
Laravel Tabler
Laravel Package for integrating Tabler template and this package is Laravel Mix friendly.
Stars: ✭ 20 (-28.57%)
Mutual labels:  laravel
Doorman
Limit access to your Laravel applications by using invite codes
Stars: ✭ 913 (+3160.71%)
Mutual labels:  laravel
Blazar
Pre-Render Pages on the Fly in Laravel
Stars: ✭ 14 (-50%)
Mutual labels:  laravel
Chatify
A Laravel package that allows you to add a complete user messaging system into your new/existing Laravel application.
Stars: ✭ 885 (+3060.71%)
Mutual labels:  laravel
Scheduled Tweets App
A Laravel app to schedule tweets
Stars: ✭ 21 (-25%)
Mutual labels:  laravel
Backend
Nodes backend package
Stars: ✭ 13 (-53.57%)
Mutual labels:  laravel
Eloquent Driver
A package that allows you to store Statamic entries in a database.
Stars: ✭ 28 (+0%)
Mutual labels:  laravel
Laravel Scout Elastic
Elastic Driver for Laravel Scout
Stars: ✭ 886 (+3064.29%)
Mutual labels:  laravel
Orderable
My very first Laravel package
Stars: ✭ 21 (-25%)
Mutual labels:  laravel
Billing
A general purpose interface to Stripe that's optimized for Laravel 5 SaaS applications.
Stars: ✭ 14 (-50%)
Mutual labels:  laravel
Phperinterviewguide
相对于 PHPer 新手而言比较有指导意义的 PHPer 面试指南
Stars: ✭ 886 (+3064.29%)
Mutual labels:  laravel
Laravel Scrum Dev Paas
Laravel后端服务,提供团队协作管理平台的后端业务逻辑
Stars: ✭ 21 (-25%)
Mutual labels:  laravel
Pro
ECStore Pro - Laravel 微信网店微服务框架
Stars: ✭ 14 (-50%)
Mutual labels:  laravel
Dt54
Laravel 5.4 DataTables Demo Application (WIP)
Stars: ✭ 27 (-3.57%)
Mutual labels:  laravel
Vue Model
Model component for Vue.js
Stars: ✭ 877 (+3032.14%)
Mutual labels:  laravel
Easyhttp
A Laravel HTTP-client to make HTTP request easier and log requests and responses
Stars: ✭ 20 (-28.57%)
Mutual labels:  laravel
Larawiz
Larawiz is a easy project scaffolder for Laravel
Stars: ✭ 28 (+0%)
Mutual labels:  laravel
Laravel Nuxt
A Laravel-Nuxt starter kit.
Stars: ✭ 943 (+3267.86%)
Mutual labels:  laravel
Pusher Chatkit Laravel
Laravel wrapper for the Chatkit PHP SDK. ChatKit is shutting down 😕 - https://blog.pusher.com/narrowing-our-product-focus
Stars: ✭ 21 (-25%)
Mutual labels:  laravel

⚠️ The SFTP service provider is present natively in Laravel since v5.6.7. You should avoid using this package if you are in a version of Laravel higher than this one.

Latest Stable Version

Laravel SFTP

This package provide a service provider to add the "sftp" driver to Laravel Storage.

Installation

Require this package with composer using the following command:

composer require neoxia/laravel-sftp

As of Laravel 5.5, this package will be automatically discovered and registered. For older version of Laravel, add the service provider in config/app.php.

Neoxia\Filesystem\SftpServiceProvider::class,

Configuration

To configure a new Laravel storage disk on SFTP, provide a configuration like this one in config/filesystems.php

'disks' => [

    'sftp' => [
        'driver'     => 'sftp',
        'host'       => env('SFTP_HOST', ''),
        'port'       => env('SFTP_PORT', '21'),
        'username'   => env('SFTP_USERNAME', ''),
        'password'   => env('SFTP_PASSWORD', ''),
        'privateKey' => env('SFTP_PRIVATE_KEY_PATH', ''),
        'root'       => env('SFTP_ROOT', ''),
        'timeout'    => env('SFTP_TIMEOUT', '10'),
    ],

],
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].