eydamos / kernel-framework
Provides everything needed for a kernel and bundles without the massive overhead of the symfony/http-kernel.
This package's canonical repository appears to be gone and the package has been frozen as a result.
Requires
- php: >=5.5.9
- symfony/config: ^3.4
- symfony/console: ^3.4
- symfony/dependency-injection: ^3.4
- symfony/finder: ^3.4
- symfony/yaml: ^3.4
This package is auto-updated.
Last update: 2024-03-06 22:50:14 UTC
README
Provides everything needed for a kernel and bundles without the massive overhead of the symfony/http-kernel
.
Reason
A standalone application without symfony/http-kernel
has no autowire functionality.
Each service and each command must be registered manually in contrast to a symfony environment with http-kernel.
Installation
composer require eydamos/kernel-framework
Notice
The code is basically just a copy of the relevant code from the symfony/http-kernel
bundle in a
simplified form in order to provide an already present feature without the need to require the overhead of the
http-kernel bundel and all it's dependencies.