JonathanTorres\Construct\Settings::getTestingFramework PHP Метод

getTestingFramework() публичный Метод

Get the entered testing framework.
public getTestingFramework ( ) : string
Результат string
    public function getTestingFramework()
    {
        return $this->testingFramework;
    }

Usage Example

Пример #1
0
 /**
  * Generate composer file.
  *
  * @param \JonathanTorres\Construct\Helpers\Git $git The git helper.
  *
  * @return void
  */
 protected function composer(Git $git)
 {
     $file = $this->file->get(__DIR__ . '/stubs/composer.txt');
     $user = $git->getUser();
     $stubs = ['{project_upper}', '{project_lower}', '{vendor_lower}', '{vendor_upper}', '{testing}', '{testing_version}', '{namespace}', '{license}', '{author_name}', '{author_email}', '{keywords}'];
     $values = [$this->projectUpper, $this->projectLower, $this->vendorLower, $this->vendorUpper, $this->settings->getTestingFramework(), $this->testingVersion, $this->createNamespace(true), $this->settings->getLicense(), $user['name'], $user['email'], $this->str->toQuotedKeywords($this->settings->getComposerKeywords())];
     $content = str_replace($stubs, $values, $file);
     $this->file->put($this->projectLower . '/' . 'composer.json', $content);
 }
All Usage Examples Of JonathanTorres\Construct\Settings::getTestingFramework