We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently the example in the Slim4 branch doesn't work due to
$app = new Slim\App();
requires changing to something like:
$psrFactory = new Psr17Factory(); $app = new Slim\App( $psrFactory );
The run line also needs changing, as:
$app->run();
requires a request to be passed in. However I can't seem to see an obviously correct way of doing that. Any suggestion please.
The text was updated successfully, but these errors were encountered:
#2529 currently has the best explanations of how to run the Slim 4.x branch.
Sorry, something went wrong.
Merge branch 'update-example' into 4.x
bcf7df5
Closes #2553 Fixes #2552
@Danack Example now works. Note that you don't have to use that PSR-7 implementation though.
No branches or pull requests
Currently the example in the Slim4 branch doesn't work due to
requires changing to something like:
The run line also needs changing, as:
requires a request to be passed in. However I can't seem to see an obviously correct way of doing that. Any suggestion please.
The text was updated successfully, but these errors were encountered: