-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
58 lines (58 loc) · 1.51 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
{
"name": "ubccr/redfly",
"description": "The Regulatory Element Database for Drosophila",
"type": "project",
"license": "proprietary",
"authors": [
{
"name": "Center for Computational Research, the University at Buffalo",
"email": "[email protected]"
}
],
"require": {
"doctrine/dbal": "2.12.0",
"google/apiclient": "^2.10",
"google/recaptcha": "1.2.4",
"guzzlehttp/guzzle": "7.2.0",
"latitude/latitude": "2.3.1",
"league/csv": "9.7.1",
"league/json-guard": "1.0.1",
"league/oauth2-google": "3.0.3",
"monolog/monolog": "1.25.5",
"paragonie/easydb": "2.11.0",
"phpmailer/phpmailer": "6.1.8",
"psr/http-message": "1.0.1",
"psr/log": "1.1.3",
"slim/slim": "3.9.0"
},
"require-dev": {
"phpstan/phpstan": "^0.12.93",
"squizlabs/php_codesniffer": "^3.6.0"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"CCR\\REDfly\\": "lib"
},
"classmap": [
"lib/",
"lib/api",
"lib/ExportFile",
"lib/ExtDatasource"
]
},
"autoload-dev": {
"psr-4": {
"CCR\\REDfly\\": "tests/unit/"
}
},
"config": {
"platform": {
"php": "7.4.20",
"ext-bcmath": "7.4.20"
},
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
}
}