Download the PHP package gamernetwork/yolk-application without Composer
On this page you can find all versions of the php package gamernetwork/yolk-application. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download gamernetwork/yolk-application
More information about gamernetwork/yolk-application
Files in gamernetwork/yolk-application
Package yolk-application
Short Description Gamer Network's PHP application foundation
License MIT
Informations about the package yolk-application
Want to work for Gamer Network? We are hiring!
Yolk Application
The foundation of Yolk web applications. Request/Response handling, routing, middleware etc.
Requirements
- PHP 5.4 or later
- Yolk Contracts (
gamernetwork/yolk-contracts
) - Yolk Core (
gamernetwork/yolk-core
) - Yolk Support (
gamernetwork/yolk-support
)
Installation
It is installable and autoloadable via Composer as gamernetwork/yolk-application
.
Alternatively, download a release or clone this repository, and add the \yolk\app
namespace to an autoloader.
License
Yolk Application is open-sourced software licensed under the MIT license.
Overview
This package contains the components and services required to construct a basic Yolk web application.
Applications extend the BaseApplication
class, which in-turn extends the BaseDispatcher
class
and use a Router
in order to pass a Request
through middlewares to a handler (usually extending BaseController
).
Handlers return a Response
(usually a subclass of BaseResponse
) which is sent to the client.
Further Reading
- Requests and Responses
- Dispatch and Routing
- Middleware
- Service Container
All versions of yolk-application with dependencies
gamernetwork/yolk-contracts Version 1.*
gamernetwork/yolk-core Version 1.*
gamernetwork/yolk-support Version 1.*
pimple/pimple Version 3.*