Download the PHP package rconfig/laravel-zabbix without Composer

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

Laravel Zabbix by rConfig

Tests PHP Version Laravel Version

A Laravel-first, developer-friendly client for the Zabbix JSON-RPC API that makes monitoring integrations a breeze, developed by rConfig.

✨ Features


πŸ“¦ Installation

Install via Composer:

The service provider will be auto-discovered. Optionally publish the config:


βš™οΈ Configuration

Environment Variables

Config File

The config file at config/zabbix.php provides sensible defaults:


πŸš€ Quick Start


πŸ” Fluent Queries

Build complex queries with an intuitive fluent interface:

Hosts

Host Groups

Advanced Query Builder (Alternative)

For complex queries, you can still use the explicit query builder:


πŸ“Š Version Matrix & Compatibility

Zabbix Version Tested Minor Notes
6.0 LTS 6.0.29 Fully supported. apiinfo.version requires auth in some setups.
7.x 7.0.2 Fully supported. Some methods differ slightly in param requirements.

We recommend running your integration tests against both LTS and current major to catch method or parameter changes early.

🚫 Unsupported Operations

Some Zabbix API resources do not implement all CRUD operations.
For example, certain system resources cannot be created or deleted.

In these cases:

Example:

env ZABBIX_PARAM_VALIDATION=true env ZABBIX_BASE_URL=https://zabbix.example.com ZABBIX_API_TOKEN=your_api_token_here ZABBIX_USERNAME=Admin ZABBIX_PASSWORD=zabbix

/code β”œβ”€ myapp/ # Your Laravel app └─ rconfig-laravel-zabbix/ # This package json { "repositories": [ { "type": "path", "url": "../rconfig-laravel-zabbix", "options": { "symlink": true } } ] } bash cd myapp composer require rconfig/laravel-zabbix:"dev-main" php artisan vendor:publish --tag=zabbix-config bash php artisan tinker

use Rconfig\Zabbix\Facades\ZabbixApi; $zabbix = ZabbixApi::login('fake://localhost'); $zabbix->apiVersion() // "7.0.0" (fake) $zabbix->hosts()->all() // Mock data md

[0.1.0] - 2025-08-09

Added

  • Initial public release of the Laravel Zabbix client. bash git add CHANGELOG.md git commit -m "docs: update changelog for v0.1.0" git push origin main bash git tag -a v0.1.0 -m "v0.1.0 initial public release" git push origin v0.1.0 bash composer install bash vendor/bin/pest bash vendor/bin/pint bash

    Run all tests with fakes

    vendor/bin/pest

Run integration tests (requires real Zabbix server)

RUN_ZABBIX_INTEGRATION=1 \ ZABBIX_BASE_URL=https://your-zabbix.com \ ZABBIX_API_TOKEN=your_token \ vendor/bin/pest



## πŸ“„ License

This package is open-sourced software licensed under the [MIT license](LICENSE).

## Code of Conduct

While we aren't directly affiliated with Zabbix or Laravel, but we follow their respective Codes of Conduct. We expect you to abide by these guidelines as well.

## Authors

This library is created by rConfig Developers for the Zabbix and Laravel communities.

## License

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

<div align="center">
<strong>Built with ❀️ by rConfig for the Zabbix and Laravel communities</strong>
</div>

All versions of laravel-zabbix with dependencies

PHP Build Version
Package Version
Requires php Version ^8.2|^8.3|^8.4
illuminate/support Version ^10.0|^11.0|^12.0|^13.0
illuminate/http Version ^10.0|^11.0|^12.0|^13.0
guzzlehttp/guzzle Version ^7.0|^8.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 rconfig/laravel-zabbix contains the following files

Loading the files please wait ...