Skip to content

Commit 85b29ec

Browse files
committed
Add new php xdebug profile env variables
1 parent fc1a9f8 commit 85b29ec

File tree

41 files changed

+795
-1265
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+795
-1265
lines changed

docker/php-apache-dev/alpine-3-php7/conf/provision/entrypoint.d/10-php-debugger.sh

Lines changed: 19 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -62,46 +62,34 @@ fi
6262
#################################################
6363

6464
function phpEnvironmentVariable() {
65-
PHP_ENV_NAME="$1"
66-
PHP_ENV_VALUE="$2"
65+
PHP_INI_KEY="$1"
66+
PHP_ENV_NAME="$2"
6767

68-
echo "${PHP_ENV_NAME}=\"${PHP_ENV_VALUE}\"" >> /opt/docker/etc/php/php.ini
68+
if [[ -n "${!PHP_ENV_NAME+x}" ]]; then
69+
PHP_ENV_VALUE="${!PHP_ENV_NAME}"
70+
echo "${PHP_INI_KEY}=\"${PHP_ENV_VALUE}\"" >> /opt/docker/etc/php/php.ini
71+
fi
6972
}
7073

7174
###################
7275
# XDEBUG
7376
###################
7477

75-
# xdebug.remote_connect_back
76-
if [[ -n "${XDEBUG_REMOTE_CONNECT_BACK+x}" ]]; then
77-
phpEnvironmentVariable "xdebug.remote_connect_back" "$XDEBUG_REMOTE_CONNECT_BACK"
78-
fi
79-
80-
# xdebug.remote_autostart
81-
if [[ -n "${XDEBUG_REMOTE_AUTOSTART+x}" ]]; then
82-
phpEnvironmentVariable "xdebug.remote_autostart" "$XDEBUG_REMOTE_AUTOSTART"
83-
fi
78+
# remote debugger
79+
phpEnvironmentVariable "xdebug.remote_connect_back" "XDEBUG_REMOTE_CONNECT_BACK"
80+
phpEnvironmentVariable "xdebug.remote_autostart" "XDEBUG_REMOTE_AUTOSTART"
81+
phpEnvironmentVariable "xdebug.remote_host" "XDEBUG_REMOTE_HOST"
82+
phpEnvironmentVariable "xdebug.remote_port" "XDEBUG_REMOTE_PORT"
8483

85-
# xdebug.remote_host
86-
if [[ -n "${XDEBUG_REMOTE_HOST+x}" ]]; then
87-
phpEnvironmentVariable "xdebug.remote_host" "$XDEBUG_REMOTE_HOST"
88-
fi
89-
90-
# xdebug.remote_port
91-
if [[ -n "${XDEBUG_REMOTE_PORT+x}" ]]; then
92-
phpEnvironmentVariable "xdebug.remote_port" "$XDEBUG_REMOTE_PORT"
93-
fi
84+
# profiler
85+
phpEnvironmentVariable "xdebug.profiler_enable" "XDEBUG_PROFILER_ENABLE"
86+
phpEnvironmentVariable "xdebug.profiler_enable_trigger" "XDEBUG_PROFILER_ENABLE_TRIGGER"
87+
phpEnvironmentVariable "xdebug.profiler_enable_trigger_value" "XDEBUG_PROFILER_ENABLE_TRIGGER_VALUE"
88+
phpEnvironmentVariable "xdebug.profiler_output_dir" "XDEBUG_PROFILER_OUTPUT_DIR"
89+
phpEnvironmentVariable "xdebug.profiler_output_name" "XDEBUG_PROFILER_OUTPUT_NAME"
9490

9591
###################
9692
# BLACKFIRE
9793
###################
98-
99-
# blackfire.server_id
100-
if [[ -n "${BLACKFIRE_SERVER_ID+x}" ]]; then
101-
phpEnvironmentVariable "blackfire.server_id" "$BLACKFIRE_SERVER_ID"
102-
fi
103-
104-
# blackfire.server_token
105-
if [[ -n "${BLACKFIRE_SERVER_TOKEN+x}" ]]; then
106-
phpEnvironmentVariable "blackfire.server_token" "$BLACKFIRE_SERVER_TOKEN"
107-
fi
94+
phpEnvironmentVariable "blackfire.server_id" "BLACKFIRE_SERVER_ID"
95+
phpEnvironmentVariable "blackfire.server_token" "BLACKFIRE_SERVER_TOKEN"

docker/php-apache-dev/alpine-3/conf/provision/entrypoint.d/10-php-debugger.sh

Lines changed: 19 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -62,46 +62,34 @@ fi
6262
#################################################
6363

6464
function phpEnvironmentVariable() {
65-
PHP_ENV_NAME="$1"
66-
PHP_ENV_VALUE="$2"
65+
PHP_INI_KEY="$1"
66+
PHP_ENV_NAME="$2"
6767

68-
echo "${PHP_ENV_NAME}=\"${PHP_ENV_VALUE}\"" >> /opt/docker/etc/php/php.ini
68+
if [[ -n "${!PHP_ENV_NAME+x}" ]]; then
69+
PHP_ENV_VALUE="${!PHP_ENV_NAME}"
70+
echo "${PHP_INI_KEY}=\"${PHP_ENV_VALUE}\"" >> /opt/docker/etc/php/php.ini
71+
fi
6972
}
7073

7174
###################
7275
# XDEBUG
7376
###################
7477

75-
# xdebug.remote_connect_back
76-
if [[ -n "${XDEBUG_REMOTE_CONNECT_BACK+x}" ]]; then
77-
phpEnvironmentVariable "xdebug.remote_connect_back" "$XDEBUG_REMOTE_CONNECT_BACK"
78-
fi
79-
80-
# xdebug.remote_autostart
81-
if [[ -n "${XDEBUG_REMOTE_AUTOSTART+x}" ]]; then
82-
phpEnvironmentVariable "xdebug.remote_autostart" "$XDEBUG_REMOTE_AUTOSTART"
83-
fi
78+
# remote debugger
79+
phpEnvironmentVariable "xdebug.remote_connect_back" "XDEBUG_REMOTE_CONNECT_BACK"
80+
phpEnvironmentVariable "xdebug.remote_autostart" "XDEBUG_REMOTE_AUTOSTART"
81+
phpEnvironmentVariable "xdebug.remote_host" "XDEBUG_REMOTE_HOST"
82+
phpEnvironmentVariable "xdebug.remote_port" "XDEBUG_REMOTE_PORT"
8483

85-
# xdebug.remote_host
86-
if [[ -n "${XDEBUG_REMOTE_HOST+x}" ]]; then
87-
phpEnvironmentVariable "xdebug.remote_host" "$XDEBUG_REMOTE_HOST"
88-
fi
89-
90-
# xdebug.remote_port
91-
if [[ -n "${XDEBUG_REMOTE_PORT+x}" ]]; then
92-
phpEnvironmentVariable "xdebug.remote_port" "$XDEBUG_REMOTE_PORT"
93-
fi
84+
# profiler
85+
phpEnvironmentVariable "xdebug.profiler_enable" "XDEBUG_PROFILER_ENABLE"
86+
phpEnvironmentVariable "xdebug.profiler_enable_trigger" "XDEBUG_PROFILER_ENABLE_TRIGGER"
87+
phpEnvironmentVariable "xdebug.profiler_enable_trigger_value" "XDEBUG_PROFILER_ENABLE_TRIGGER_VALUE"
88+
phpEnvironmentVariable "xdebug.profiler_output_dir" "XDEBUG_PROFILER_OUTPUT_DIR"
89+
phpEnvironmentVariable "xdebug.profiler_output_name" "XDEBUG_PROFILER_OUTPUT_NAME"
9490

9591
###################
9692
# BLACKFIRE
9793
###################
98-
99-
# blackfire.server_id
100-
if [[ -n "${BLACKFIRE_SERVER_ID+x}" ]]; then
101-
phpEnvironmentVariable "blackfire.server_id" "$BLACKFIRE_SERVER_ID"
102-
fi
103-
104-
# blackfire.server_token
105-
if [[ -n "${BLACKFIRE_SERVER_TOKEN+x}" ]]; then
106-
phpEnvironmentVariable "blackfire.server_token" "$BLACKFIRE_SERVER_TOKEN"
107-
fi
94+
phpEnvironmentVariable "blackfire.server_id" "BLACKFIRE_SERVER_ID"
95+
phpEnvironmentVariable "blackfire.server_token" "BLACKFIRE_SERVER_TOKEN"

docker/php-apache-dev/centos-7-php56/conf/provision/entrypoint.d/10-php-debugger.sh

Lines changed: 19 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -62,46 +62,34 @@ fi
6262
#################################################
6363

6464
function phpEnvironmentVariable() {
65-
PHP_ENV_NAME="$1"
66-
PHP_ENV_VALUE="$2"
65+
PHP_INI_KEY="$1"
66+
PHP_ENV_NAME="$2"
6767

68-
echo "${PHP_ENV_NAME}=\"${PHP_ENV_VALUE}\"" >> /opt/docker/etc/php/php.ini
68+
if [[ -n "${!PHP_ENV_NAME+x}" ]]; then
69+
PHP_ENV_VALUE="${!PHP_ENV_NAME}"
70+
echo "${PHP_INI_KEY}=\"${PHP_ENV_VALUE}\"" >> /opt/docker/etc/php/php.ini
71+
fi
6972
}
7073

7174
###################
7275
# XDEBUG
7376
###################
7477

75-
# xdebug.remote_connect_back
76-
if [[ -n "${XDEBUG_REMOTE_CONNECT_BACK+x}" ]]; then
77-
phpEnvironmentVariable "xdebug.remote_connect_back" "$XDEBUG_REMOTE_CONNECT_BACK"
78-
fi
79-
80-
# xdebug.remote_autostart
81-
if [[ -n "${XDEBUG_REMOTE_AUTOSTART+x}" ]]; then
82-
phpEnvironmentVariable "xdebug.remote_autostart" "$XDEBUG_REMOTE_AUTOSTART"
83-
fi
78+
# remote debugger
79+
phpEnvironmentVariable "xdebug.remote_connect_back" "XDEBUG_REMOTE_CONNECT_BACK"
80+
phpEnvironmentVariable "xdebug.remote_autostart" "XDEBUG_REMOTE_AUTOSTART"
81+
phpEnvironmentVariable "xdebug.remote_host" "XDEBUG_REMOTE_HOST"
82+
phpEnvironmentVariable "xdebug.remote_port" "XDEBUG_REMOTE_PORT"
8483

85-
# xdebug.remote_host
86-
if [[ -n "${XDEBUG_REMOTE_HOST+x}" ]]; then
87-
phpEnvironmentVariable "xdebug.remote_host" "$XDEBUG_REMOTE_HOST"
88-
fi
89-
90-
# xdebug.remote_port
91-
if [[ -n "${XDEBUG_REMOTE_PORT+x}" ]]; then
92-
phpEnvironmentVariable "xdebug.remote_port" "$XDEBUG_REMOTE_PORT"
93-
fi
84+
# profiler
85+
phpEnvironmentVariable "xdebug.profiler_enable" "XDEBUG_PROFILER_ENABLE"
86+
phpEnvironmentVariable "xdebug.profiler_enable_trigger" "XDEBUG_PROFILER_ENABLE_TRIGGER"
87+
phpEnvironmentVariable "xdebug.profiler_enable_trigger_value" "XDEBUG_PROFILER_ENABLE_TRIGGER_VALUE"
88+
phpEnvironmentVariable "xdebug.profiler_output_dir" "XDEBUG_PROFILER_OUTPUT_DIR"
89+
phpEnvironmentVariable "xdebug.profiler_output_name" "XDEBUG_PROFILER_OUTPUT_NAME"
9490

9591
###################
9692
# BLACKFIRE
9793
###################
98-
99-
# blackfire.server_id
100-
if [[ -n "${BLACKFIRE_SERVER_ID+x}" ]]; then
101-
phpEnvironmentVariable "blackfire.server_id" "$BLACKFIRE_SERVER_ID"
102-
fi
103-
104-
# blackfire.server_token
105-
if [[ -n "${BLACKFIRE_SERVER_TOKEN+x}" ]]; then
106-
phpEnvironmentVariable "blackfire.server_token" "$BLACKFIRE_SERVER_TOKEN"
107-
fi
94+
phpEnvironmentVariable "blackfire.server_id" "BLACKFIRE_SERVER_ID"
95+
phpEnvironmentVariable "blackfire.server_token" "BLACKFIRE_SERVER_TOKEN"

docker/php-apache-dev/centos-7/conf/provision/entrypoint.d/10-php-debugger.sh

Lines changed: 19 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -62,46 +62,34 @@ fi
6262
#################################################
6363

6464
function phpEnvironmentVariable() {
65-
PHP_ENV_NAME="$1"
66-
PHP_ENV_VALUE="$2"
65+
PHP_INI_KEY="$1"
66+
PHP_ENV_NAME="$2"
6767

68-
echo "${PHP_ENV_NAME}=\"${PHP_ENV_VALUE}\"" >> /opt/docker/etc/php/php.ini
68+
if [[ -n "${!PHP_ENV_NAME+x}" ]]; then
69+
PHP_ENV_VALUE="${!PHP_ENV_NAME}"
70+
echo "${PHP_INI_KEY}=\"${PHP_ENV_VALUE}\"" >> /opt/docker/etc/php/php.ini
71+
fi
6972
}
7073

7174
###################
7275
# XDEBUG
7376
###################
7477

75-
# xdebug.remote_connect_back
76-
if [[ -n "${XDEBUG_REMOTE_CONNECT_BACK+x}" ]]; then
77-
phpEnvironmentVariable "xdebug.remote_connect_back" "$XDEBUG_REMOTE_CONNECT_BACK"
78-
fi
79-
80-
# xdebug.remote_autostart
81-
if [[ -n "${XDEBUG_REMOTE_AUTOSTART+x}" ]]; then
82-
phpEnvironmentVariable "xdebug.remote_autostart" "$XDEBUG_REMOTE_AUTOSTART"
83-
fi
78+
# remote debugger
79+
phpEnvironmentVariable "xdebug.remote_connect_back" "XDEBUG_REMOTE_CONNECT_BACK"
80+
phpEnvironmentVariable "xdebug.remote_autostart" "XDEBUG_REMOTE_AUTOSTART"
81+
phpEnvironmentVariable "xdebug.remote_host" "XDEBUG_REMOTE_HOST"
82+
phpEnvironmentVariable "xdebug.remote_port" "XDEBUG_REMOTE_PORT"
8483

85-
# xdebug.remote_host
86-
if [[ -n "${XDEBUG_REMOTE_HOST+x}" ]]; then
87-
phpEnvironmentVariable "xdebug.remote_host" "$XDEBUG_REMOTE_HOST"
88-
fi
89-
90-
# xdebug.remote_port
91-
if [[ -n "${XDEBUG_REMOTE_PORT+x}" ]]; then
92-
phpEnvironmentVariable "xdebug.remote_port" "$XDEBUG_REMOTE_PORT"
93-
fi
84+
# profiler
85+
phpEnvironmentVariable "xdebug.profiler_enable" "XDEBUG_PROFILER_ENABLE"
86+
phpEnvironmentVariable "xdebug.profiler_enable_trigger" "XDEBUG_PROFILER_ENABLE_TRIGGER"
87+
phpEnvironmentVariable "xdebug.profiler_enable_trigger_value" "XDEBUG_PROFILER_ENABLE_TRIGGER_VALUE"
88+
phpEnvironmentVariable "xdebug.profiler_output_dir" "XDEBUG_PROFILER_OUTPUT_DIR"
89+
phpEnvironmentVariable "xdebug.profiler_output_name" "XDEBUG_PROFILER_OUTPUT_NAME"
9490

9591
###################
9692
# BLACKFIRE
9793
###################
98-
99-
# blackfire.server_id
100-
if [[ -n "${BLACKFIRE_SERVER_ID+x}" ]]; then
101-
phpEnvironmentVariable "blackfire.server_id" "$BLACKFIRE_SERVER_ID"
102-
fi
103-
104-
# blackfire.server_token
105-
if [[ -n "${BLACKFIRE_SERVER_TOKEN+x}" ]]; then
106-
phpEnvironmentVariable "blackfire.server_token" "$BLACKFIRE_SERVER_TOKEN"
107-
fi
94+
phpEnvironmentVariable "blackfire.server_id" "BLACKFIRE_SERVER_ID"
95+
phpEnvironmentVariable "blackfire.server_token" "BLACKFIRE_SERVER_TOKEN"

docker/php-apache-dev/debian-7/conf/provision/entrypoint.d/10-php-debugger.sh

Lines changed: 19 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -62,46 +62,34 @@ fi
6262
#################################################
6363

6464
function phpEnvironmentVariable() {
65-
PHP_ENV_NAME="$1"
66-
PHP_ENV_VALUE="$2"
65+
PHP_INI_KEY="$1"
66+
PHP_ENV_NAME="$2"
6767

68-
echo "${PHP_ENV_NAME}=\"${PHP_ENV_VALUE}\"" >> /opt/docker/etc/php/php.ini
68+
if [[ -n "${!PHP_ENV_NAME+x}" ]]; then
69+
PHP_ENV_VALUE="${!PHP_ENV_NAME}"
70+
echo "${PHP_INI_KEY}=\"${PHP_ENV_VALUE}\"" >> /opt/docker/etc/php/php.ini
71+
fi
6972
}
7073

7174
###################
7275
# XDEBUG
7376
###################
7477

75-
# xdebug.remote_connect_back
76-
if [[ -n "${XDEBUG_REMOTE_CONNECT_BACK+x}" ]]; then
77-
phpEnvironmentVariable "xdebug.remote_connect_back" "$XDEBUG_REMOTE_CONNECT_BACK"
78-
fi
79-
80-
# xdebug.remote_autostart
81-
if [[ -n "${XDEBUG_REMOTE_AUTOSTART+x}" ]]; then
82-
phpEnvironmentVariable "xdebug.remote_autostart" "$XDEBUG_REMOTE_AUTOSTART"
83-
fi
78+
# remote debugger
79+
phpEnvironmentVariable "xdebug.remote_connect_back" "XDEBUG_REMOTE_CONNECT_BACK"
80+
phpEnvironmentVariable "xdebug.remote_autostart" "XDEBUG_REMOTE_AUTOSTART"
81+
phpEnvironmentVariable "xdebug.remote_host" "XDEBUG_REMOTE_HOST"
82+
phpEnvironmentVariable "xdebug.remote_port" "XDEBUG_REMOTE_PORT"
8483

85-
# xdebug.remote_host
86-
if [[ -n "${XDEBUG_REMOTE_HOST+x}" ]]; then
87-
phpEnvironmentVariable "xdebug.remote_host" "$XDEBUG_REMOTE_HOST"
88-
fi
89-
90-
# xdebug.remote_port
91-
if [[ -n "${XDEBUG_REMOTE_PORT+x}" ]]; then
92-
phpEnvironmentVariable "xdebug.remote_port" "$XDEBUG_REMOTE_PORT"
93-
fi
84+
# profiler
85+
phpEnvironmentVariable "xdebug.profiler_enable" "XDEBUG_PROFILER_ENABLE"
86+
phpEnvironmentVariable "xdebug.profiler_enable_trigger" "XDEBUG_PROFILER_ENABLE_TRIGGER"
87+
phpEnvironmentVariable "xdebug.profiler_enable_trigger_value" "XDEBUG_PROFILER_ENABLE_TRIGGER_VALUE"
88+
phpEnvironmentVariable "xdebug.profiler_output_dir" "XDEBUG_PROFILER_OUTPUT_DIR"
89+
phpEnvironmentVariable "xdebug.profiler_output_name" "XDEBUG_PROFILER_OUTPUT_NAME"
9490

9591
###################
9692
# BLACKFIRE
9793
###################
98-
99-
# blackfire.server_id
100-
if [[ -n "${BLACKFIRE_SERVER_ID+x}" ]]; then
101-
phpEnvironmentVariable "blackfire.server_id" "$BLACKFIRE_SERVER_ID"
102-
fi
103-
104-
# blackfire.server_token
105-
if [[ -n "${BLACKFIRE_SERVER_TOKEN+x}" ]]; then
106-
phpEnvironmentVariable "blackfire.server_token" "$BLACKFIRE_SERVER_TOKEN"
107-
fi
94+
phpEnvironmentVariable "blackfire.server_id" "BLACKFIRE_SERVER_ID"
95+
phpEnvironmentVariable "blackfire.server_token" "BLACKFIRE_SERVER_TOKEN"

docker/php-apache-dev/debian-8-php7/conf/provision/entrypoint.d/10-php-debugger.sh

Lines changed: 19 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -62,46 +62,34 @@ fi
6262
#################################################
6363

6464
function phpEnvironmentVariable() {
65-
PHP_ENV_NAME="$1"
66-
PHP_ENV_VALUE="$2"
65+
PHP_INI_KEY="$1"
66+
PHP_ENV_NAME="$2"
6767

68-
echo "${PHP_ENV_NAME}=\"${PHP_ENV_VALUE}\"" >> /opt/docker/etc/php/php.ini
68+
if [[ -n "${!PHP_ENV_NAME+x}" ]]; then
69+
PHP_ENV_VALUE="${!PHP_ENV_NAME}"
70+
echo "${PHP_INI_KEY}=\"${PHP_ENV_VALUE}\"" >> /opt/docker/etc/php/php.ini
71+
fi
6972
}
7073

7174
###################
7275
# XDEBUG
7376
###################
7477

75-
# xdebug.remote_connect_back
76-
if [[ -n "${XDEBUG_REMOTE_CONNECT_BACK+x}" ]]; then
77-
phpEnvironmentVariable "xdebug.remote_connect_back" "$XDEBUG_REMOTE_CONNECT_BACK"
78-
fi
79-
80-
# xdebug.remote_autostart
81-
if [[ -n "${XDEBUG_REMOTE_AUTOSTART+x}" ]]; then
82-
phpEnvironmentVariable "xdebug.remote_autostart" "$XDEBUG_REMOTE_AUTOSTART"
83-
fi
78+
# remote debugger
79+
phpEnvironmentVariable "xdebug.remote_connect_back" "XDEBUG_REMOTE_CONNECT_BACK"
80+
phpEnvironmentVariable "xdebug.remote_autostart" "XDEBUG_REMOTE_AUTOSTART"
81+
phpEnvironmentVariable "xdebug.remote_host" "XDEBUG_REMOTE_HOST"
82+
phpEnvironmentVariable "xdebug.remote_port" "XDEBUG_REMOTE_PORT"
8483

85-
# xdebug.remote_host
86-
if [[ -n "${XDEBUG_REMOTE_HOST+x}" ]]; then
87-
phpEnvironmentVariable "xdebug.remote_host" "$XDEBUG_REMOTE_HOST"
88-
fi
89-
90-
# xdebug.remote_port
91-
if [[ -n "${XDEBUG_REMOTE_PORT+x}" ]]; then
92-
phpEnvironmentVariable "xdebug.remote_port" "$XDEBUG_REMOTE_PORT"
93-
fi
84+
# profiler
85+
phpEnvironmentVariable "xdebug.profiler_enable" "XDEBUG_PROFILER_ENABLE"
86+
phpEnvironmentVariable "xdebug.profiler_enable_trigger" "XDEBUG_PROFILER_ENABLE_TRIGGER"
87+
phpEnvironmentVariable "xdebug.profiler_enable_trigger_value" "XDEBUG_PROFILER_ENABLE_TRIGGER_VALUE"
88+
phpEnvironmentVariable "xdebug.profiler_output_dir" "XDEBUG_PROFILER_OUTPUT_DIR"
89+
phpEnvironmentVariable "xdebug.profiler_output_name" "XDEBUG_PROFILER_OUTPUT_NAME"
9490

9591
###################
9692
# BLACKFIRE
9793
###################
98-
99-
# blackfire.server_id
100-
if [[ -n "${BLACKFIRE_SERVER_ID+x}" ]]; then
101-
phpEnvironmentVariable "blackfire.server_id" "$BLACKFIRE_SERVER_ID"
102-
fi
103-
104-
# blackfire.server_token
105-
if [[ -n "${BLACKFIRE_SERVER_TOKEN+x}" ]]; then
106-
phpEnvironmentVariable "blackfire.server_token" "$BLACKFIRE_SERVER_TOKEN"
107-
fi
94+
phpEnvironmentVariable "blackfire.server_id" "BLACKFIRE_SERVER_ID"
95+
phpEnvironmentVariable "blackfire.server_token" "BLACKFIRE_SERVER_TOKEN"

0 commit comments

Comments
 (0)