Skip to content
Snippets Groups Projects
Select Git revision
  • fb3b99716445774c9d82b76fe17b120921e51a2d
  • main default protected
  • feature/export-filtering
  • feature/clear-schedule-button
  • fix/responsive-cols-in-polls
  • feature/preference-polling-form
  • feature/json-export-via-rest-framework
  • feature/json-schedule-import-tests
  • fix/add-room-import-only-once
  • ak-import
  • renovate/django-simple-history-3.x
  • renovate/django-debug-toolbar-4.x
  • renovate/django-5.x
  • renovate/mysqlclient-2.x
14 results

__init__.py

Blame
  • Forked from KIF / AKPlanning
    Source project has a limited visibility.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    cake.php 1.19 KiB
    #!/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.4.16';
    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));