├── README.md ├── composer.json └── index.php /README.md: -------------------------------------------------------------------------------- 1 | THE DEVELOPMENT OF NELLA FRAMEWORK HAS BEEN ABANDONED 2 | ===================================================== 3 | 4 | Please use stable version (v0.8.0) 5 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "nella/framework", 3 | "type": "nette-addon", 4 | "description": "THE DEVELOPMENT OF NELLA FRAMEWORK HAS BEEN ABANDONED", 5 | "license": ["BSD-3-Clause", "GPL-2.0+"], 6 | "authors": [ 7 | { 8 | "name": "Patrik Votoček", 9 | "email": "patrik@votocek.cz", 10 | "homepage": "http://patrik.votocek.cz" 11 | }, 12 | { 13 | "name": "Nella Project", 14 | "homepage": "http://nella-project.org" 15 | } 16 | ], 17 | "autoload": { 18 | "files": ["index.php"] 19 | }, 20 | "require": { 21 | "php": ">=5.3.2" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 | ' . PHP_EOL; 9 | } 10 | 11 | $message .= 'Please use stable version (v0.8.0)'; 12 | 13 | if (PHP_SAPI === 'cli') { 14 | $message .= PHP_EOL; 15 | } 16 | 17 | die($message); 18 | --------------------------------------------------------------------------------