Download the PHP package javvlon/laravel-google-chat-logger without Composer

On this page you can find all versions of the php package javvlon/laravel-google-chat-logger. 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 laravel-google-chat-logger

Laravel Google Chat Logger

Laravel Google Chat Logger is a simple package that integrates Google Chat logging with Laravel. It sends logs directly to a Google Chat room using a webhook, making it easy to track errors or important events in your Laravel application.

Features

Installation

Step 1: Install the Package via Composer

To install the package, add it to your composer.json or install it directly via the command line:

composer require javvlon/laravel-google-chat-logger

Configuration

After installing the package, you need to configure your logging channels. To do this, open your config/logging.php file and add the google_chat channel configuration:

'channels' => [
    // Other log channels...

    'google_chat' => [
        'driver' => 'google_chat',
        'webhook_url' => env('GOOGLE_CHAT_WEBHOOK_URL'),
        'level' => 'error', // You can set the desired log level: debug, info, notice, warning, error, critical, alert, emergency
    ],
],

Environment Variables

You must add your Google Chat webhook URL to your .env file:

GOOGLE_CHAT_WEBHOOK_URL=https://chat.googleapis.com/v1/spaces/your-space/messages?key=your-key&token=your-token

Usage

Once configured, Laravel will automatically send any logs to Google Chat using the specified channel. You can use the google_chat channel to log errors:

Log::channel('google_chat')->error('This is a test error log message.');

Customization

You can adjust the logging level in the logging.php configuration to filter what types of logs are sent to Google Chat.

For example, to log only warnings and above:

'level' => 'warning',

License

The MIT License (MIT). Please see License File for more information.

Contributing

Feel free to open issues or submit pull requests to improve the functionality. We welcome contributions!

Support

If you encounter any issues or need assistance, feel free to open a GitHub issue.


All versions of laravel-google-chat-logger with dependencies

PHP Build Version
Package Version
Requires php Version >=7.4
illuminate/support Version ^8.0|^9.0|^10.0|^11.0
guzzlehttp/guzzle Version ^7.0
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 javvlon/laravel-google-chat-logger contains the following files

Loading the files please wait ....