-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
executable file
·73 lines (73 loc) · 1.75 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "API Mapa OSC",
"description": "API de dados do Mapa das Organizações da Sociedade Civil.",
"version": "2.4.0",
"homepage": "https://mapaosc.ipea.gov.br/",
"keywords": ["php", "lumen", "api", "rest", "server", "http", "json", "mapaosc", "ipea"],
"license": "LGPL-3.0",
"authors": [
{
"name": "Vagner Praia",
"email": "vagnerpraia@gmail.com"
},
{
"name": "Denise Silva",
"email": "dssilva.2689@gmail.com"
},
{
"name": "Raul Sena Ferreira",
"email": "raulsenaferreira@gmail.com"
},
{
"name": "Heraldo Borges",
"email": "heraldoborges@gmail.com"
},
{
"name": "Eric Ferreira",
"email": "eric_santos6@hotmail.com"
},
{
"name": "Tiago Nascimento",
"email": "tmnascimento@gmail.com"
}
],
"type": "project",
"require": {
"php": ">=5.5.9",
"laravel/lumen-framework": "5.2.*",
"vlucas/phpdotenv": "~2.2",
"illuminate/mail": "5.*",
"guzzlehttp/guzzle": "^6.2",
"pear/mail": "^1.3",
"pear/net_smtp": "^1.7",
"phpmailer/phpmailer": "^5.2",
"jenssegers/mongodb": "^3.2",
"zircote/swagger-php": "^2.0",
"cboden/Ratchet": "0.3.*"
},
"require-dev": {
"fzaninotto/faker": "~1.4",
"phpunit/phpunit": "~4.0",
"codeception/codeception": "^2.2"
},
"autoload": {
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"classmap": [
"tests/",
"database/"
]
},
"scripts": {
"post-root-package-install": [
"php -r \"copy('.env.example', '.env');\""
]
},
"support": {
"email": "mapaosc@ipea.gov.br",
"source": "https://github.com/Plataformas-Cidadania/portalosc/"
}
}