forked from novosga/novosga
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (46 loc) · 1.17 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
{
"name": "novosga/novosga",
"type": "project",
"description": "Sistema de Gerenciamento de Atendimento",
"keywords": ["sga", "atendimento", "fila", "gerenciamento", "controle"],
"homepage": "http://www.novosga.org",
"license": "MIT",
"authors": [
{
"name": "Rogério Alencar Lino Filho",
"email": "[email protected]",
"homepage": "http://rogeriolino.com",
"role": "Developer"
}
],
"require": {
"php": ">=5.4",
"ext-pdo": "~1.0",
"ext-json": "*",
"ext-gettext": "*",
"slim/slim": "~2.6",
"slim/views": "~0.1",
"twig/twig": "~1.18",
"twig/extensions": "~1.2",
"doctrine/orm": "~2.5",
"bshaffer/oauth2-server-php": "~1.7"
},
"suggest": {
"ext-mysql": "For MySQL or MariaDB databases",
"ext-pgsql": "For PostgreSQL databases"
},
"autoload": {
"psr-0": {
"Novosga\\": "src/",
"modules\\": "./"
}
},
"config": {
"bin-dir": "bin"
},
"extra": {
"branch-alias": {
"dev-master": "1.5-dev"
}
}
}