From 1ebdca26999d8a308b9920301713749d8a860f6b Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 19 Jun 2026 11:57:32 +0200 Subject: update to 1.4.0 switch to XOlegator fork drop ZTS build re-license spec file to CECILL-2.1 add pie virtual provides --- composer.json | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 composer.json (limited to 'composer.json') diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..166f3b5 --- /dev/null +++ b/composer.json @@ -0,0 +1,35 @@ +{ + "name": "xolegator/pinba_extension", + "description": "Pinba PHP extension: collects request and timer metrics and ships them over UDP (protobuf) to Pinba Engine.", + "type": "php-ext", + "keywords": ["pinba", "extension", "profiling", "metrics", "monitoring", "protobuf"], + "homepage": "https://github.com/XOlegator/pinba_extension", + "license": "LGPL-2.1-or-later", + "authors": [ + { + "name": "Antony Dovgal", + "homepage": "https://github.com/tony2001/pinba_extension", + "role": "Original author" + }, + { + "name": "Oleg Ekhlakov", + "email": "o.ekhlakov@protonmail.com", + "homepage": "https://github.com/XOlegator/pinba_extension", + "role": "Fork maintainer" + } + ], + "support": { + "issues": "https://github.com/XOlegator/pinba_extension/issues", + "source": "https://github.com/XOlegator/pinba_extension" + }, + "require": { + "php": ">=8.2" + }, + "php-ext": { + "extension-name": "pinba", + "priority": 20, + "support-zts": true, + "support-nts": true, + "configure-options": [] + } +} -- cgit