%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.149 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/11585/cwd/html/water/vendor/codeception/codeception/src/Codeception/Template/ |
Upload File : |
<?php namespace Codeception\Template; use Codeception\Configuration; use Codeception\InitTemplate; class Upgrade4 extends InitTemplate { const SURVEY_LINK = 'http://bit.ly/codecept-survey'; const DONATE_LINK = 'https://opencollective.com/codeception'; public function setup() { if (!$this->isInstalled()) { $this->sayWarning('Codeception is not installed in this dir.'); return; } $this->sayInfo('Welcome to Codeception v4 Upgrade wizard!'); $this->say(''); $this->say('Codeception is maintained since 2011, is free & open-source.'); $this->say('To make it better we need your feedback on it!'); $this->say(''); $this->say('Please take a minute and fill in a brief survey:'); $this->say('<bold>' . self::SURVEY_LINK . '</bold>'); sleep(5); $this->say(''); $result = $this->ask('<question>Did you fill in the survey?</question>', true); if ($result) { $this->say('Thank you! '); } else { $this->say('Anyway...'); } $config = Configuration::config(); $modules = []; $suites = Configuration::suites(); if (empty($suites)) { $this->sayError("No suites found in current config."); $this->sayWarning('If you use sub-configs with `include` option, run this script on subconfigs:'); $this->sayWarning('Example: php vendor/bin/codecept init upgrade4 -c backend/'); throw new \Exception("No suites found, can't upgrade"); } foreach (Configuration::suites() as $suite) { $suiteConfig = Configuration::suiteSettings($suite, $config); $modules = array_merge($modules, Configuration::modules($suiteConfig)); } $numPackages = $this->addModulesToComposer($modules); if ($numPackages === 0) { $this->sayWarning("No upgrade needed! Everything is fine already"); return; } $this->saySuccess("Done upgrading!"); $this->say(''); $this->say('Please consider donating to Codeception on regular basis:'); $this->say(''); $this->say('<bold>' . self::DONATE_LINK . '</bold>'); $this->say(''); $this->say('It\'s ok to pay for reliable software.'); $this->say('Talk to your manager & support further development of Codeception!'); } private function isInstalled() { try { $this->checkInstalled(); } catch (\Exception $e) { return true; } return false; } }