bangpound/kernel-traits

Symfony kernel traits

dev-master / 1.0.x-dev 2015-12-07 18:07 UTC

This package is auto-updated.

Last update: 2024-04-12 03:02:37 UTC


README

Symfony 2.8 has that new Microkernel trait and this package contains some other simple traits that can support development of simple Symfony Kernel applications.

Using these traits effectively probably requires you to store configuration in the environment with SYMFONY__ prefixed envrionment variables.

ClassBasedNameTrait

Use this trait in your kernel to base the kernel's name on its class name instead of its directory.

VariableFilesystemTrait

Use this trait in your kernel to store cache and logs in the Symfony 3 standard var location. If you have multiple kernels in the same directory, you will need to use ClassBasedNameTrait to avoid conflicts.

YamlEnvironmentTrait

Use this trait in your kernel to parse environment variables as YAML before populating the container parameters.

StandardConfigTrait and MinimalConfigTrait

These two traits are probably not useful in any real sense, but they demonstrate how to sustain a Symfony Standard configuration with the microkernel trait and the bare minimum required to instantiate the kernel and framework, respectively.