Skip to content

Commit 094849e

Browse files
committed
removed support for Latte 2
1 parent 5d3b219 commit 094849e

11 files changed

+2
-337
lines changed

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@
2121
"require-dev": {
2222
"nette/tester": "^2.4",
2323
"nette/di": "^3.1 || ^4.0",
24-
"latte/latte": "^2.11 || ^3.0.12",
24+
"latte/latte": "^3.0.12",
2525
"tracy/tracy": "^2.9",
2626
"phpstan/phpstan": "^1.0"
2727
},
2828
"conflict": {
29-
"latte/latte": ">=3.0.0 <3.0.12"
29+
"latte/latte": "<3.0.12"
3030
},
3131
"suggest": {
3232
"ext-pdo_sqlite": "to use SQLiteStorage or SQLiteJournal"

src/Bridges/CacheLatte/CacheMacro.php

-168
This file was deleted.

tests/Bridges.Latte2/CacheMacro.cache.phpt

-48
This file was deleted.

tests/Bridges.Latte2/CacheMacro.createCache.phpt

-49
This file was deleted.

tests/Bridges.Latte2/expected/CacheMacro.cache.html

-8
This file was deleted.

tests/Bridges.Latte2/expected/CacheMacro.cache.inc.php

-12
This file was deleted.

tests/Bridges.Latte2/expected/CacheMacro.cache.php

-28
This file was deleted.

tests/Bridges.Latte2/templates/cache.latte

-9
This file was deleted.

tests/Bridges.Latte2/templates/include.cache.latte

-5
This file was deleted.

tests/Bridges.Latte3/Runtime.phpt

-4
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,6 @@ use Tester\Assert;
99

1010
require __DIR__ . '/../bootstrap.php';
1111

12-
if (version_compare(Latte\Engine::VERSION, '3', '<')) {
13-
Tester\Environment::skip('Test for Latte 3');
14-
}
15-
1612

1713
test('', function () {
1814
$runtime = new Runtime(new DevNullStorage);

tests/Bridges.Latte3/{cache}.phpt

-4
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,6 @@ use Tester\Assert;
1111

1212
require __DIR__ . '/../bootstrap.php';
1313

14-
if (version_compare(Latte\Engine::VERSION, '3', '<')) {
15-
Tester\Environment::skip('Test for Latte 3');
16-
}
17-
1814

1915
$latte = new Latte\Engine;
2016
$latte->setTempDirectory(getTempDir());

0 commit comments

Comments
 (0)