-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1015 Bytes
/
composer.json
File metadata and controls
41 lines (41 loc) · 1015 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
32
33
34
35
36
37
38
39
40
41
{
"repositories": [
{
"url": "https://github.com/Boolive/Core.git",
"type": "git"
}
],
"name": "boolive/skeleton",
"description": "Skeleton on the Boolive platform",
"minimum-stability": "stable",
"license": "MIT",
"autoload": {
"psr-4": {
"": ""
}
},
"authors": [
{
"name": "Vladimir Shestakov",
"email": "boolive@yandex.ru"
}
],
"require": {
"boolive/core": "dev-master",
"boolive/basic": "dev-master",
"boolive/navigations": "dev-master",
"boolive/widgets": "dev-master",
"boolive/admin": "dev-master",
"boolive/forms": "dev-master",
"boolive/buildings": "dev-master",
"boolive/data_tools": "dev-master"
},
"scripts": {
"post-install-cmd": [
"php bowerphp.phar install"
],
"post-update-cmd": [
"php bowerphp.phar install"
]
}
}