forked from magento/magento-cloud-docker
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathServiceInterface.php
More file actions
36 lines (34 loc) · 1.1 KB
/
ServiceInterface.php
File metadata and controls
36 lines (34 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
declare(strict_types=1);
namespace Magento\CloudDocker\Service;
/**
* Interface for installed services.
*
* @api
*/
interface ServiceInterface
{
public const SERVICE_PHP = 'php';
public const SERVICE_PHP_CLI = 'php-cli';
public const SERVICE_PHP_FPM = 'php-fpm';
public const SERVICE_FPM_XDEBUG = 'php-fpm-xdebug';
public const SERVICE_DB = 'mysql';
public const SERVICE_DB_QUOTE = 'mysql-quote';
public const SERVICE_DB_SALES = 'mysql-sales';
public const SERVICE_NGINX = 'nginx';
public const SERVICE_REDIS = 'redis';
public const SERVICE_ELASTICSEARCH = 'elasticsearch';
public const SERVICE_RABBITMQ = 'rabbitmq';
public const SERVICE_NODE = 'node';
public const SERVICE_VARNISH = 'varnish';
public const SERVICE_SELENIUM = 'selenium';
public const SERVICE_TEST = 'test';
public const SERVICE_TLS = 'tls';
public const SERVICE_GENERIC = 'generic';
public const SERVICE_BLACKFIRE = 'blackfire';
public const SERVICE_MAILHOG = 'mailhog';
}