Download the PHP package neeckeloo/newrelic without Composer

On this page you can find all versions of the php package neeckeloo/newrelic. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package newrelic

NewRelic module for Laminas

NewRelic module provide an object-oriented PHP wrapper for New Relic monitoring service.

Build Status Latest Stable Version Total Downloads

Introduction

NewRelic module provide a logger and a wrapper for New Relic PHP API.

The current route is used to set the name of each transaction. Moreover, the module allow exceptions logging if enabled.

Requirements

Installation

NewRelic module only officially supports installation through Composer. For Composer documentation, please refer to getcomposer.org.

You can install the module from command line:

Alternatively, you can also add manually the dependency in your composer.json file:

Enable the module by adding NewRelic key to your application.config.php file. Customize the module by copy-pasting the newrelic.global.php.dist file to your config/autoload folder.

Default configuration

Usage

Define transaction name

The module use NewRelic\Listener\RequestListener to specify the transaction name automatically using matched route name by default.

Transaction name providers

The transaction name is retrieved from a provider (NewRelic\TransactionNameProvider\RouteNameProvider by default) defined in the configuration.

The package contains some providers:

Specify transaction name manually

You can also defined the transaction name yourself by defining NullProvider as transaction name provider and using nameTransaction method of the client.

Ignore transactions

NewRelic API allows to ignore some transactions. This configuration defines some routes and controllers of transactions that will be ignored.

Ignore routes

Those rules ignore all admin routes and the "user/login" route.

Ignore controllers

You can also ignore some actions of specified controllers :

Ignore a transaction manually

You can ignore a transaction manually by calling method of NewRelic client.

Define background jobs

The configuration of background jobs is identical to ignored transactions but use the key as below.

Define a background job manually

You can define a transaction as background job manually by calling method of NewRelic client.

Ignore apdex metrics

You can ignore apdex metrics like transaction metrics using the key .

Ignore apdex metrics manually

You can ignore apdex metrics manually by calling method of NewRelic client.

Add custom metric


All versions of newrelic with dependencies

PHP Build Version
Package Version
Requires php Version ^7.2
psr/container Version 1.0
monolog/monolog Version ^1.17 || ^2.0
laminas/laminas-console Version ^2.6
laminas/laminas-eventmanager Version ^2.6 || ^3.0
laminas/laminas-servicemanager Version ^2.7 || ^3.0
laminas/laminas-http Version ^2.5
laminas/laminas-mvc Version ^2.7 || ^3.0
laminas/laminas-stdlib Version ^3.2.1
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package neeckeloo/newrelic contains the following files

Loading the files please wait ....