-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 936 Bytes
/
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
{
"name": "graviton/analytics-mongoshell-converter",
"description": "small script that converts a mongoshell compatible aggregate array to php classes",
"type": "cli",
"license": "MIT",
"authors": [
{
"name": "List of contributors",
"homepage": "https://github.com/libgraviton/analytics-mongoshell-converter/graphs/contributors"
}
],
"require": {
"php": ">=7.2",
"symfony/finder": "^4.1",
"symfony/filesystem": "^4.1",
"doctrine/lexer": "^1.0",
"nette/php-generator": "^3.2",
"symfony/console": "^4.1",
"symfony/process": "^4.1"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"AnalyticsConverter\\": "src/"
}
},
"bin": [
"bin/analytics-convert"
],
"require-dev": {
"graviton/analytics-base": "*"
}
}