Composer/Laravel: How to add the package moxar/ftp

I need to integrate an ftp library on Laravel 5. I try to add this biblhothèque as shown in the link below. https://github.com/moxar/ftp the problem I do not want to make an update to Composer "Composer update" I wonder how I can add only the specified package: "moxar/ftp"

Upvotes: 2

Views: 325

Answers (1)

Gopal Kildoliya
Gopal Kildoliya

Reputation: 649

User Composer require command.

composer require moxar/ftp

Upvotes: 2

Related Questions