Download the PHP package earc/core without Composer
On this page you can find all versions of the php package earc/core. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Package core
Short Description eArc - the explicit architecture framework - core component
License MIT
Informations about the package core
eArc core
Core component of the eArc framework. The eArc stands for explicit architecture. It is about the urge to make code as easy to comprehend as possible, and the striving to touch the programmers' freedom to code as little as possible. In short, it is about simplicity and good architecture.
earc/core handles aspects all earc components have in common. Users of the framework or some of its components will never need to install this package directly.
table of Contents
- configuration
- customizing
- troubleshooting
- public components
- releases
- release 1.1
- release 1.0
- release 0.1
configuration
Place a file named .earc-config.php
beneath the vendor dir. It's the configuration
file for all the earc components.
Then put the following code in the bootstrap section of your framework or your
index.php
file.
That's it. You're ready to go.
customizing
If you want to put the configuration file somewhere else you can pass the filename
as parameter to the build
method.
Hint: If you prefer the YAML format and do not use php constructs in your configuration, you can use a yaml parser.
troubleshooting
If you get an error
you most probably have not registered the composer autoloader yet. You can do this by requiring the composer autoload script in the vendor directory.
Public components
All components can be used without the framework. Some components may depend on each other.
- (advanced) dependency injection: earc/di
- (lucid) event handling: earc/event-tree
- (lucid) persistence abstraction layer: earc/data
- (explicit) routing: earc/router
- (reduced) parameter transformation: earc/parameter-transformer
- (reduced) object/array casting: earc/cast
releases
release 1.1
- PHP ^7.2 || ^8.0
release 1.0
- complete rewrite
release 0.1
- the first official release