PHP Classes

File: src/database/data/environments.php

Recommend this page to a friend!
  Classes of Angel Campos   Atlas catalog   src/database/data/environments.php   Download  
File: src/database/data/environments.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: Atlas catalog
API to provide details of APIs of an organization
Author: By
Last change:
Date: 1 month ago
Size: 1,678 bytes
 

Contents

Class file image Download
<?php

declare(strict_types=1);

return [
    [
       
'name' => 'Development',
       
'abbr' => 'dev',
       
'approval_required' => false,
       
'description' => 'Environment for active development and testing by the development team.',
       
'display_in_matrix' => true,
       
'sort_order' => 10,
    ],
    [
       
'name' => 'Integration',
       
'abbr' => 'int',
       
'approval_required' => false,
       
'description' => 'Environment dedicated to testing integration between different systems and components.',
       
'display_in_matrix' => true,
       
'sort_order' => 20,
    ],
    [
       
'name' => 'Acceptance Testing',
       
'abbr' => 'uat',
       
'approval_required' => false,
       
'description' => 'Environment for quality assurance and user acceptance testing.',
       
'display_in_matrix' => true,
       
'sort_order' => 30,
    ],
    [
       
'name' => 'Staging',
       
'abbr' => 'stg',
       
'approval_required' => false,
       
'description' => 'A pre-production environment that mirrors the production setup.',
       
'display_in_matrix' => true,
       
'sort_order' => 40,
    ],
    [
       
'name' => 'Production',
       
'abbr' => 'pro',
       
'approval_required' => true,
       
'description' => 'The live environment accessed by end-users.',
       
'display_in_matrix' => true,
       
'sort_order' => 50,
    ],
    [
       
'name' => 'Sandbox',
       
'abbr' => 'sbx',
       
'approval_required' => false,
       
'description' => 'An isolated environment for experimentation and testing without affecting other environments.',
       
'display_in_matrix' => false,
       
'sort_order' => 0,
    ],
];