-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
28 lines (28 loc) · 827 Bytes
/
composer.json
File metadata and controls
28 lines (28 loc) · 827 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
{
"name": "uspdev/replicado2mongodb",
"minimum-stability": "dev",
"prefer-stable": true,
"homepage": "https://github.com/uspdev/replicado2mongodb",
"description": "Classes PHP que consome dados do Replicado USP e cria coleções uteis no mongodb",
"type": "library",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Thiago Gomes Verissimo",
"email": "thiago.verissimo@usp.br",
"homepage": "https://github.com/thiagogomesverissimo"
}
],
"autoload": {
"psr-4" : {
"Uspdev\\Replicado2MongoDB\\" : "src"
}
},
"require": {
"php": "^7 || ^8",
"ext-pdo_dblib": "*",
"jenssegers/mongodb": "^5.7",
"vlucas/phpdotenv": "^5.6",
"uspdev/replicado": "^1.27"
}
}