okta / okta-sdk-php

PHP SDK for the Okta API
Apache License 2.0
38 stars 71 forks source link

Compatibility with laravel/framework 8.0 #123

Closed victornieto closed 3 years ago

victornieto commented 3 years ago

We need the okta sdk integrated in a laravel 8 project. These libraries below are causing conflicts:

"symfony/yaml": "^3.2|^4.3",
"illuminate/collections": "8.29.0",
"guzzlehttp/psr7": "1.7.0",
"vlucas/phpdotenv": "^3.3|^4.1",

Updating those to these versions spec is solving the issue on our side

"symfony/yaml": "^3.2|^4.3|^5.0",
"illuminate/collections": "^8.29.0",
"guzzlehttp/psr7": "^1.7.0",
"vlucas/phpdotenv": "^3.3|^4.1|^5.3",

Not sure if this configuration is breaking something internally though.

bretterer commented 3 years ago

@victornieto, Thank you for reporting this. We will add this to our tasks to take a look at.

Internal Ref: OKTA-389602

bretterer commented 3 years ago

The branch update_deps will resolve this. I have tested basic functionality with PHP 8.0.2 and Laravel 8.40.0

victornieto commented 3 years ago

Excellent. We'll give it a try

bretterer commented 3 years ago

@victornieto please let me know if that works for you