-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (31 loc) · 788 Bytes
/
composer.json
File metadata and controls
31 lines (31 loc) · 788 Bytes
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
{
"type": "library",
"name": "itrukhin/bxconsole",
"description": "CLI manager for 1C-Bitrix",
"keywords": ["bitrix", "bitrix-cms", "1c-bitrix", "console"],
"homepage": "https://github.com/itrukhin/bxconsole.git",
"license": "MIT",
"authors": [{
"name": "Ivan Trukhin",
"email": "mail@itrukhin.ru",
"homepage": "https://itrukhin.ru/"
}],
"platform": {
"php": ">=8.1"
},
"require": {
"psr/log": "^1.0.1 || ^2.0 || ^3.0",
"symfony/dotenv": "^5.1",
"symfony/lock": "^5.3",
"symfony/console": "^6.4",
"doctrine/annotations": "1.*"
},
"autoload": {
"psr-4": {
"App\\BxConsole\\": "src/"
}
},
"bin": [
"bin/bxconsole"
]
}