-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
61 lines (61 loc) · 1.39 KB
/
composer.json
File metadata and controls
61 lines (61 loc) · 1.39 KB
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
{
"name": "maximaster/tools",
"description": "Модуль со вспомогательными инструментами для разработки",
"keywords": [
"bitrix",
"1С Битрикс",
"d7",
"модуль",
"Битрикс",
"Максимастер"
],
"type": "bitrix-module",
"license": "MIT",
"support": {
"www": "http://maximaster.ru",
"source": "https://github.com/maximaster/tools.git"
},
"authors": [
{
"name": "Журов Михаил",
"email": "m.zhurov@maximaster.ru"
}
],
"extra": {
"installer-name": "maximaster.tools"
},
"require": {
"php": ">=5.3.0",
"composer/installers": "*",
"maximaster/tools.events": "dev-master",
"maximaster/tools.orm": "dev-master",
"maximaster/tools.twig": "*",
"maximaster/tools.property_interfaces": "dev-master"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/maximaster/tools.events.git"
},
{
"type": "vcs",
"url": "https://github.com/maximaster/tools.orm.git"
},
{
"type": "vcs",
"url": "https://github.com/maximaster/tools.twig.git"
},
{
"type": "vcs",
"url": "https://github.com/maximaster/tools.property_interfaces.git"
}
],
"autoload": {
"psr-4": {
"Maximaster\\": "lib/"
},
"files": [
"install/autoloader.php"
]
}
}