-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
86 lines (86 loc) · 2.17 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"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-php-lib",
"license": "MIT",
"authors": [
{
"name": "Maksim Mesilov",
"homepage": "https://github.com/mesilov/"
}
],
"support": {
"issues": "https://github.com/mesilov/bitrix24-php-lib/issues?state=open",
"source": "https://github.com/mesilov/bitrix24-php-lib"
},
"minimum-stability": "stable",
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"preferred-install": {
"*": "dist",
"bitrix24/b24phpsdk": "source"
}
},
"require": {
"php": "8.3.*",
"ext-json": "*",
"ext-curl": "*",
"ext-bcmath": "*",
"ext-intl": "*",
"psr/log": "^3",
"fig/http-message-util": "^1",
"giggsey/libphonenumber-for-php": "^8",
"darsyn/ip": "^5",
"nesbot/carbon": "^3",
"moneyphp/money": "^4",
"bitrix24/b24phpsdk": "dev-dev",
"doctrine/orm": "^3",
"doctrine/doctrine-bundle": "*",
"doctrine/doctrine-migrations-bundle": "*",
"knplabs/knp-paginator-bundle": "^6",
"symfony/event-dispatcher": "^7",
"symfony/serializer": "^7",
"symfony/uid": "^7",
"symfony/yaml": "^7",
"symfony/cache": "^7",
"symfony/console": "^7",
"symfony/dotenv": "^7"
},
"require-dev": {
"lendable/composer-license-checker": "^1.2",
"friendsofphp/php-cs-fixer": "^3.64",
"monolog/monolog": "^3",
"fakerphp/faker": "^1",
"phpstan/phpstan": "^1",
"phpunit/phpunit": "^11",
"doctrine/migrations": "^3",
"psalm/phar": "^5",
"rector/rector": "^1",
"roave/security-advisories": "dev-master",
"symfony/debug-bundle": "^7",
"symfony/stopwatch": "^7"
},
"autoload": {
"psr-4": {
"Bitrix24\\Lib\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Bitrix24\\Lib\\Tests\\": "tests",
"Bitrix24\\SDK\\Tests\\": "vendor/bitrix24/b24phpsdk/tests"
}
}
}