Skip to content

Commit b233c31

Browse files
committed
Add composer.json
1 parent 4f4288f commit b233c31

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
examples/
2+
logs/
23

composer.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"name": "andrey-tech/bitrix24-api-php",
3+
"description": "Обертка для работы с API Битрикс24 с использованием механизма входящих вебхуков, троттлингом запросов и логированием в файл",
4+
"homepage": "https://github.com/andrey-tech/bitrix24-api-php",
5+
"minimum-stability": "stable",
6+
"license": "MIT",
7+
"authors": [
8+
{
9+
"name": "andrey-tech",
10+
"homepage": "https://github.com/andrey-tech/",
11+
"role": "Developer"
12+
}
13+
],
14+
"require": {
15+
"php": ">=7.0"
16+
},
17+
"autoload": {
18+
"psr-4": {
19+
"App\\": "src/App",
20+
"App\\Bitrix24\\": "src/App/Bitrix24"
21+
}
22+
}
23+
}

0 commit comments

Comments
 (0)