Mercurial > hg > isophonics-drupal-site
comparison core/modules/simpletest/simpletest.install @ 16:c2387f117808
Routine composer update
author | Chris Cannam |
---|---|
date | Tue, 10 Jul 2018 15:07:59 +0100 |
parents | 4c8ae668cc8c |
children | af1871eacc83 |
comparison
equal
deleted
inserted
replaced
15:e200cb7efeb3 | 16:c2387f117808 |
---|---|
27 'title' => t('PHPUnit dependency'), | 27 'title' => t('PHPUnit dependency'), |
28 'value' => $has_phpunit ? t('Found') : t('Not found'), | 28 'value' => $has_phpunit ? t('Found') : t('Not found'), |
29 ]; | 29 ]; |
30 if (!$has_phpunit) { | 30 if (!$has_phpunit) { |
31 $requirements['phpunit']['severity'] = REQUIREMENT_ERROR; | 31 $requirements['phpunit']['severity'] = REQUIREMENT_ERROR; |
32 $requirements['phpunit']['description'] = t("The testing framework requires the PHPUnit package. Please run 'composer install --dev' to ensure it is present."); | 32 $requirements['phpunit']['description'] = t("The testing framework requires the PHPUnit package. Please run 'composer install' to ensure it is present."); |
33 } | 33 } |
34 | 34 |
35 $requirements['curl'] = [ | 35 $requirements['curl'] = [ |
36 'title' => t('cURL'), | 36 'title' => t('cURL'), |
37 'value' => $has_curl ? t('Enabled') : t('Not found'), | 37 'value' => $has_curl ? t('Enabled') : t('Not found'), |