43 lines
1.3 KiB
PHP
43 lines
1.3 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Pre-Screening Questions
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| These 10 Yes/No questions are presented before category selection.
|
|
| Each "Yes" answer scores 1 point. A score of 5 or more is required
|
|
| to proceed to the category questionnaire.
|
|
|
|
|
*/
|
|
|
|
'questions' => [
|
|
1 => 'Is the opportunity aligned with our strategic goals?',
|
|
2 => 'Do we have the necessary expertise to deliver?',
|
|
3 => 'Is the client financially stable?',
|
|
4 => 'Are there no significant conflicts of interest?',
|
|
5 => 'Is the timeline realistic?',
|
|
6 => 'Do we have available resources?',
|
|
7 => 'Is the expected fee reasonable for the scope?',
|
|
8 => 'Are the client\'s expectations manageable?',
|
|
9 => 'Have we successfully completed similar engagements?',
|
|
10 => 'Is the risk level acceptable?',
|
|
],
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Passing Score Threshold
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Minimum score required to proceed to category selection.
|
|
|
|
|
*/
|
|
|
|
'passing_score' => 5,
|
|
|
|
];
|