From 603228d45e005e96f7bbf19221d78bdeef2d03a6 Mon Sep 17 00:00:00 2001 From: igor Date: Wed, 28 May 2025 18:02:41 +0200 Subject: [PATCH] added composer file --- composer.json | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 composer.json diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..bccb320 --- /dev/null +++ b/composer.json @@ -0,0 +1,37 @@ +{ + "name": "tpsoft/apilite", + "license": "GPL-3.0-or-later", + "description": "A set of tools to simplify the work of creating backend APIs for your frontend projects.", + "type": "library", + "readme": "README.md", + "keywords": [ + "api", + "rest", + "json", + "php", + "typescript" + ], + "authors": [ + { + "name": "Igor Mino", + "email": "mino@tpsoft.org", + "homepage": "https://www.tpsoft.org", + "role": "Developer" + } + ], + "funding": [ + { + "type": "other", + "url": "https://www.anycoin.cz/donate/igormino" + } + ], + "require": { + "php": ">=8.2", + "ext-pdo": "*" + }, + "autoload": { + "psr-4": { + "TPsoft\\APIlite\\": "src/" + } + } +}