1: <?php
2:
3: /**
4: * This file is part of the Nette Framework (https://nette.org)
5: * Copyright (c) 2004 David Grudl (https://davidgrudl.com)
6: */
7:
8: namespace Nette;
9:
10:
11: /**
12: * Framework version.
13: */
14: class Framework
15: {
16:
17: const NAME = 'Nette Framework',
18: VERSION = '2.4',
19: VERSION_ID = 20400,
20: REVISION = '2.4-20180918';
21:
22: }
23: