diff --git a/.gitignore b/.gitignore index e5261b9..a67886b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ examples/ +logs/ diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..6224f52 --- /dev/null +++ b/composer.json @@ -0,0 +1,23 @@ +{ + "name": "andrey-tech/bitrix24-api-php", + "description": "Обертка для работы с API Битрикс24 с использованием механизма входящих вебхуков, троттлингом запросов и логированием в файл", + "homepage": "https://github.com/andrey-tech/bitrix24-api-php", + "minimum-stability": "stable", + "license": "MIT", + "authors": [ + { + "name": "andrey-tech", + "homepage": "https://github.com/andrey-tech/", + "role": "Developer" + } + ], + "require": { + "php": ">=7.0" + }, + "autoload": { + "psr-4": { + "App\\": "src/App", + "App\\Bitrix24\\": "src/App/Bitrix24" + } + } +}