mirror of
https://github.com/mlocati/docker-php-extension-installer
synced 2025-05-09 00:22:40 +00:00
Add support for newrelic (#910)
This commit is contained in:
parent
9eb0c12a9c
commit
b899180851
4 changed files with 51 additions and 2 deletions
15
scripts/tests/newrelic
Executable file
15
scripts/tests/newrelic
Executable file
|
@ -0,0 +1,15 @@
|
|||
#!/usr/bin/env php
|
||||
<?php
|
||||
|
||||
require_once __DIR__ . '/_bootstrap.php';
|
||||
|
||||
$rc = 0;
|
||||
echo 'Checking if newrelic_start_transaction() exists... ';
|
||||
if (!function_exists('newrelic_start_transaction')) {
|
||||
$rc = 1;
|
||||
echo "NO!\n";
|
||||
} else {
|
||||
echo "yes.\n";
|
||||
}
|
||||
|
||||
exit($rc);
|
Loading…
Add table
Add a link
Reference in a new issue