-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
29 lines (29 loc) · 1.32 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
{
"name": "maximaster/bitrix-enums",
"description": "Предоставляет перечисления относящиеся к Битрикс, чтобы не использовать в коде строки или числа или знать о перечислениях Битрикса не подключая сам Битрикс (например не-Битрикс проектов которые обращаются к Битрикс по API)",
"license": "MIT",
"minimum-stability": "RC",
"prefer-stable": true,
"require": {
"php": "^7.4|^8.2",
"maximaster/bitrix-version": ">=18.5.180",
"myclabs/php-enum": "^1.7",
"webmozart/assert": "^1.9.0"
},
"autoload": {
"psr-4": {
"Maximaster\\BitrixEnums\\": "src/"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.59",
"php-parallel-lint/php-parallel-lint": "^1.4",
"squizlabs/php_codesniffer": "^3.10",
"phpcompatibility/php-compatibility": "^9.3"
},
"authors": [
{"name": "Лавриненко Максим", "email": "[email protected]"},
{"name": "Лепесин Сергей", "email": "[email protected]"},
{"name": "Мельников Максим", "email": "[email protected]"}
]
}