Download the PHP package delboy1978uk/bone-controller without Composer
On this page you can find all versions of the php package delboy1978uk/bone-controller. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download delboy1978uk/bone-controller
More information about delboy1978uk/bone-controller
Files in delboy1978uk/bone-controller
Package bone-controller
Short Description Controller package for Bone Framework
License MIT
Informations about the package bone-controller
bone-controller
Controller package for Bone Framework
installation
bone-controller is part of the core functionality of delboy1978uk/bone
, and as such will already be installed in your
app.
usage
The Bone\Controller\Controller
comes with a serializer, view engine, translator, and site config info. Just extend it in your own
class to get these features, and in your package registration class, pass it through Bone\Controller\Init
:
The Init
class is a convenience class which checks for the following, and populates from the DI container.
Feature | Interface | Trait |
---|---|---|
Entity Manager | Bone\BoneDoctrine\Traits\EntityManagerAwareInterface | Bone\BoneDoctrine\Traits\HasEntityManagerTrait |
i18n | Bone\I18n\I18nAwareInterface | Bone\I18n\Traits\HasTranslatorTrait |
Logger | Bone\Log\Traits\HasLoggerTrait | Bone\Log\Traits\HasLoggerTrait |
PDO Connection | Bone\Db\DbProviderInterface | Bone\Db\HasDbTrait |
Serializer | Bone\Controller\SerializerAwareInterface | Bone\Controller\Traits\HasSerializer |
Session | Bone\Server\SessionAwareInterface | Bone\Server\Traits\HasSessionTrait |
Site Config | Bone\Server\SiteConfigAwareInterface | Bone\Server\Traits\HasSiteConfigTrait |
View | Bone\View\ViewAwareInterface | Bone\View\Traits\HasViewTrait |
In your own controller, implement the Interface and use the Trait:
All versions of bone-controller with dependencies
delboy1978uk/barnacle Version ^2.3
delboy1978uk/bone-db Version ^1.2
delboy1978uk/bone-i18n Version ^1.2
delboy1978uk/bone-log Version ^1.3
delboy1978uk/bone-server Version ^1.2
delboy1978uk/bone-view Version ^1.7
delboy1978uk/session Version ^1.6
jms/serializer Version ^3.32
laminas/laminas-diactoros Version ^3.3
psr/log Version ^3.0