SonarSoftwareInc / customer_portal

A prebuilt customer portal for Sonar.
https://sonar.software
25 stars 51 forks source link

AB#25101 customer portal paypal integration throws error #167

Closed cjw6k closed 10 months ago

cjw6k commented 10 months ago

Laravel 10 requires monolog 3. Monolog 3 requires psr/log 2|3. paypal/rest-api-sdk-php 1.14 requires psr/log 1.

We originally aliased psr/log 3 to 1 to satisfy paypal/rest-api-sdk-php, but psr/log 3 adds an explicit void return type in LoggerAbstract that causes a fatal error when extended. In psr/log 2 there is no specified return type on the abstract, and so paypal/rest-api-sdk-php 1.14 remains compatible.