Download the PHP package koded/logging without Composer

On this page you can find all versions of the php package koded/logging. 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 logging

Koded - Logging Library

A simple message logging library that implements PSR-3 with several log processors. It supports multiple log writers that can be set separately and process messages based on the log level.

Latest Stable Version Build Status Code Coverage Scrutinizer Code Quality Minimum PHP Version

Installation

Use composer and run

composer require koded/logging

or add it manually in your current composer.json

Usage

Configuration

Param Type Required Default Description
(processors) array yes (empty) An array of log processors. Every processor is defined in array with it's own configuration parameters. See processor directives
dateformat string no "d/m/Y H:i:s.u" The date format for the log message. Microseconds are prepended by default
timezone string no "UTC" The desired timezone for the log message

Processor default directives

Every log processor has it's own set of configuration directives.
The table shows log parameters in the classes.

Param Type Required Default Description
class string yes The name of the log processor class
levels integer no -1 Packed integer for bitwise comparison. See the constants in Logger class

Levels example

The messages are filtered with bitwise operator against the levels value. Every processor will filter out the messages as defined in it's levels directive.

For instance, to log only WARNING, INFO and ERROR messages, set levels to

Tips:

Processors

Class name Description
ErrorLog uses the error_log() function to send the message to PHP's logger
Cli write the messages in the console (with STDERR)
Memory will store all messages in an array. Useful for unit tests if the logger is involved
SysLog will open the system logger and send messages using the syslog() function
File saves the messages on a disk

Benchmarks and tests

License

The code is distributed under the terms of The 3-Clause BSD license.


All versions of logging with dependencies

PHP Build Version
Package Version
Requires php Version ^8.1
psr/log Version ^3
koded/stdlib Version ^5|^6
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 koded/logging contains the following files

Loading the files please wait ....