ezyt / atatus
Wrapper for Atatus
Installs: 781
Dependents: 1
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/ezyt/atatus
Requires
- php: ^7.0|^8.0
This package is auto-updated.
Last update: 2025-09-09 16:30:34 UTC
README
For license information check the LICENSE-file.
Requirements
Works with atatus agent
Installation
php composer.phar require --prefer-dist ezyt/atatus
or add
"ezyt/atatus": "*"
to the require section of your composer.json.
Example
$atatus = new \Ezyt\Atatus\Service(); if ($atatus->isLoaded()) { $atatus->endTransaction(); $atatus->beginTransaction(); $atatus->setTransactionName('/requested_uri'); } //... $atatus->endTransaction();