-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
56 lines (50 loc) · 1.35 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
{
"name": "clientes/kakarepresentacoes",
"description": "Projeto",
"license": "proprietary",
"type": "project",
"minimum-stability": "dev",
"authors": [
{
"name": "Marcos Neves",
"email": "[email protected]"
}
],
"autoload": {
"psr-0": {
"": "php/lib/"
},
"files": []
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/sinergia/info.git"
},
{
"type": "vcs",
"url": "https://github.com/sinergia/sinergia.git"
},
{
"type": "vcs",
"url": "https://github.com/sinergia/gd.git"
}
],
"require": {
"php": ">=5.3.7",
"analog/analog": "1.0.3",
"filp/whoops": "1.0.8",
"sinergia/php-forward-compat": "dev-master",
"sinergia/sinergia": "dev-master",
"sinergia/info": "dev-master",
"sinergia/gd": "dev-master"
},
"config": {
"preferred-install": "dist",
"vendor-dir": "php/vendor"
},
"scripts": {
"post-update-cmd": ["echo [NOTICE] Deleting all .git dirs inside vendor", "rm -rf php/vendor/**/**/.git"],
"post-install-cmd": ["echo [NOTICE] Deleting all .git dirs inside vendor", "rm -rf php/vendor/**/**/.git"]
}
}