stack/run

This package is abandoned and no longer maintained. No replacement package was suggested.

Shortcut function for handling HttpKernel front-controller boilerplate.

Maintainers

👁 igorw

Package info

github.com/stackphp/run

pkg:composer/stack/run

Statistics

Installs: 682 569

Dependents: 12

Suggesters: 0

Stars: 29

Open Issues: 0

v1.1.0 2018-02-20 10:28 UTC

Requires

Requires (Dev)

Suggests

None

Provides

None

Conflicts

None

Replaces

None

MIT ca5b0b958c024940c72eadead646e19ad1889d29

  • Igor Wiedler <igor.woop@wiedler.ch>

stack

This package is not auto-updated.

Last update: 2024-08-03 13:23:00 UTC


README

Shortcut function for handling HttpKernel front-controller boilerplate.

Example

Usually you need to put all of that $request = ... && $response = $app->handle($request) business in the front controller yourself. No more! With Stack/Run, you just need to call one function:

$app = ...;

Stack\run($app);