kingstarter / laravel-saml

A laravel 5.4 / 5.5 SAML plugin that transforms laravel into an IDP.
MIT License
55 stars 29 forks source link

Installation request for kingstarter/laravel-saml dev-master -> satisfiable by kingstarter/laravl-saml[dev-master]. #24

Open zahirzohair opened 5 years ago

zahirzohair commented 5 years ago

Basically, i am trying to upgrade laravel version 5.8 to 6.0. when i run composer update it shows error as bellow: Your requirements could not be resolved to an installable set of packages.

Problem 1


her is my composer: "repositories": [ { "type": "composer", "url": "https://spark-satis.laravel.com" }, { "type": "path", "url": "./packages/Webspec/ZapnitoApi" } ], "require": { "php": "^7.1.3", "fideloper/proxy": "^4.0", "guzzlehttp/guzzle": "^6.3", "kingstarter/laravel-saml": "dev-master", "laravel/cashier": "~9.0", "laravel/framework": "^6.0", "laravel/spark-aurelius": "8.0", "laravel/tinker": "^1.0", "maatwebsite/excel": "^3.1",

},

any solution please ? thanks in advance!

jonathandey commented 4 years ago

The solution is to wait for a 6.x update to this package - I've started working with the package in Laravel 6. If it works ok I'll create a PR back into this project.

In the meantime, you can update your composer.json file to use our forked version, or fork it yourself then replicate this config:

"repositories": [
    {
        "type": "vcs",
        "url": "https://github.com/animocloud/laravel-saml"
    }
],
"require": {
    "laravel/framework": "^6.2",
    ...
    "kingstarter/laravel-saml": "dev-laravel-6"
}