12345678910111213141516171819202122232425262728293031323334 |
- #!/usr/bin/php -q
- <?php
- /**
- * Command-line code generation utility to automate programmer chores.
- *
- * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
- * Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
- *
- * Licensed under The MIT License
- * For full copyright and license information, please see the LICENSE.txt
- * Redistributions of files must retain the above copyright notice.
- *
- * @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
- * @link http://cakephp.org CakePHP(tm) Project
- * @since 2.0.0
- * @license http://www.opensource.org/licenses/mit-license.php MIT License
- */
- $minVersion = '5.5.9';
- if (file_exists('composer.json')) {
- $composer = json_decode(file_get_contents('composer.json'));
- if (isset($composer->require->php)) {
- $minVersion = preg_replace('/([^0-9\.])/', '', $composer->require->php);
- }
- }
- if (version_compare(phpversion(), $minVersion, '<')) {
- fwrite(STDERR, sprintf("Minimum PHP version: %s. You are using: %s.\n", $minVersion, phpversion()));
- exit(-1);
- }
- include dirname(__DIR__) . '/config/bootstrap.php';
- exit(Cake\Console\ShellDispatcher::run($argv));
|