-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
68 lines (68 loc) · 1.63 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "mesilov/bitrix24-php-lib",
"description": "A powerful PHP library for rapid Bitrix24 application development",
"keywords": [
"Bitrix24",
"PHP",
"REST",
"API",
"Bitrix24 Application",
"SaaS"
],
"type": "library",
"homepage": "https://github.com/mesilov/bitrix24-app-core",
"license": "MIT",
"authors": [
{
"name": "Maksim Mesilov",
"homepage": "https://github.com/mesilov/"
}
],
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"require": {
"php": "8.3.*",
"ext-json": "*",
"ext-curl": "*",
"ext-intl": "*",
"psr/log": "^3",
"fig/http-message-util": "^1",
"giggsey/libphonenumber-for-php": "^8",
"darsyn/ip": "^5",
"nesbot/carbon": "^3",
"moneyphp/money": "^4",
"mesilov/bitrix24-php-sdk": "^2",
"doctrine/orm": "^2",
"doctrine/doctrine-bundle": "^2",
"doctrine/doctrine-migrations-bundle": "^3",
"symfony/event-dispatcher": "^7",
"symfony/uid": "^7",
"knplabs/knp-paginator-bundle": "^6"
},
"require-dev": {
"monolog/monolog": "^3",
"fakerphp/faker": "^1",
"phpstan/phpstan": "^1",
"phpunit/phpunit": "^11",
"psalm/phar": "^5",
"rector/rector": "^1",
"roave/security-advisories": "dev-master",
"symfony/debug-bundle": "^7",
"symfony/stopwatch": "^7"
},
"autoload": {
"psr-4": {
"Bitrix24\\SDK\\Lib\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Bitrix24\\SDK\\Lib\\Tests\\": "tests",
"Bitrix24\\SDK\\Tests\\":"vendor/mesilov/bitrix24-php-sdk/tests"
}
}
}