Skip to content

Released version 2.2.0

Compare
Choose a tag to compare
@dg dg released this 11 May 20:45
· 78 commits to master since this release

We would like to announce the Nette Framework 2.2, the biggest revolution in its history.

Nette has been split into small projects Application, Caching, ComponentModel, Nette Database, DI, Finder, Forms, Http, Latte, Mail, Neon, PhpGenerator, Reflection, RobotLoader, SafeStream, Security, Tokenizer, Tracy and Nette Utils.

It also brings complete new Latte API for standalone usage:

$latte = new Latte\Engine;
$latte->onCompile[] = function($latte) {
    $latte->addMacro(...);
};
$latte->addFilter('money', ...);
$latte->render('template.latte', $parameters);

Also Nette\Diagnostics was renamed to nice and short Tracy.

You can, as usual, download complete package or install it via Composer.