LaravelCollective / remote

Remote SSH Access for the Laravel Framework
MIT License
276 stars 106 forks source link

Compatibility Laravel 7 #80

Open NicolasKulka opened 4 years ago

NicolasKulka commented 4 years ago

When do you plan to be compatible with Laravel 7?

scottholdren commented 4 years ago

I am also interested in Laravel 7 compatibility

ocarlosapenas commented 4 years ago

+1

jksteelman commented 4 years ago

I'm curious what problems you guys ran into. I was hesitant to use this package from your comments - but I'm a glutton for misery so I tried anyway. Its working for me on Laravel 7 with no special tinkering. While it would be nice to see it officially supported, it does seem "compatible".

laravel/framework: 7.22.4 laravelcollective/remote: 6.1.1 PHP 7.4.8 Using a ssh key with a ip for a hostname

It could be something environmental specific but its working across local (WSL), dev(aws:ubuntu18), and staging(aws:ubuntu18) environments. If you can share a specific problem, that might be helpful.

toonvandenbos commented 5 months ago

In case anybody is still stuck with this package in 2024, we've made a PR for Laravel 9, 10 & 11 which also updates phpseclib to its latest v3.

In case it never gets merged, you are free to use our fork too:

  1. Add our repository to your composer.json file:
    "repositories": [
        {
            "type": "vcs",
            "url": "https://github.com/whitecube/remote.git"
        }
    ],
  2. Change the require section:
    "whitecube/remote": "^0.1.0"

There are indeed some minor breaking changes but in our case everything is working smoothly. More info in #93