-
Notifications
You must be signed in to change notification settings - Fork 22
/
composer.json
65 lines (65 loc) · 1.76 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
{
"type": "project",
"name": "reconmap/rest-api",
"description": "Reconmap REST API",
"license": "Apache-2.0",
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"ext-curl": "*",
"ext-dom": "*",
"ext-gd": "*",
"ext-intl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-mysqli": "*",
"ext-mysqlnd": "*",
"ext-redis": "*",
"ext-simplexml": "*",
"ext-zip": "*",
"firebase/php-jwt": "^v6.0",
"geoip2/geoip2": "~3.0",
"graylog2/gelf-php": "dev-master",
"guzzlehttp/guzzle": "^7.2",
"guzzlehttp/psr7": "^2.1",
"league/commonmark": "^2.0",
"league/html-to-markdown": "^5.0",
"league/route": "^6.0",
"monolog/monolog": "^3.0",
"netresearch/jsonmapper": "^5.0",
"php": "^8.3",
"phpoffice/phpword": "^1.0",
"ponup/sql-builders": "^1.0",
"reconmap/command-parsers": "^2.0",
"symfony/config": "^7.1",
"symfony/console": "^7",
"symfony/dependency-injection": "^7.1",
"symfony/filesystem": "^7",
"symfony/http-foundation": "^7.1",
"symfony/mailer": "^7",
"symfony/psr-http-message-bridge": "^7.1",
"twig/twig": "^3.0",
"zircote/swagger-php": "^4.7",
"symfony/routing": "^7.1",
"doctrine/annotations": "^2.0"
},
"autoload": {
"psr-4": {
"Reconmap\\": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "^11"
},
"autoload-dev": {
"psr-4": {
"Reconmap\\": "tests/"
}
},
"repositories": [
{
"type": "path",
"url": "packages/command-parsers-lib"
}
]
}