This repository has been archived by the owner on Oct 29, 2023. It is now read-only.
Releases: younishd/endobox
Releases · younishd/endobox
4.3.0
4.2.0
Added
$endobox('foo')('bar')
is now equivalent to($foo = $endobox->create('foo'))->append($endobox->create('bar')->link($foo))
- Add
Box::create()
in the same fashion as the$box()
function within templates
Changed
- Overload
Box::append()
andBox::prepend()
: argument can now be of typeBox
orstring
where the latter will instantiate a newBox
before appending/prepending it
4.1.0
4.0.0
Added
- Render variable as
$markdown()
- Assigned closures can now be called like a function and be given arguments. What a time we live in!
composer test
replacingtest.sh
Changed
- PHP template will now stfu when
@
operator is used - Fix sneaky bug in union-find path compression
- Make library (even more) DI-friendly: Get rid of container code and provide a Facade with a good default combination of appropriate dependencies (We learn something every day.)