Back to october-trustedproxies Support

josh28897
josh28897

fideloper/proxy pulls in Illuminate\Contracts ~5.0. The way the dependencies are autoloaded from the plugin, the ~5.0 contracts are autoloaded instead of the 5.5.* framework contracts.

These contracts are not compatible with laravel/framework 5.5.* and it totally bricks the app. I had to delete plugins/garretfick/trustedproxies/vendor/illuminate.

Last updated

josh28897
josh28897

Also, on heroku, the autoload fails for the settings model. You have a capitalization typeo in the use statement on line 8 of TrustedProxy.php

use Garret*f*ick\Trustedproxies\Models\Settings;

should be

use Garret*F*ick\Trustedproxies\Models\Settings;

This also bricks the app.

1-2 of 2