-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.08 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
{
"name": "vaizard/glued-lib",
"description": "Common code for Glued microservices.",
"license": "MIT",
"type": "library",
"keywords": [
"library"
],
"require": {
"php": "^8",
"ext-bcmath": "*",
"ext-curl": "*",
"ext-gmp": "*",
"ext-json": "*",
"ext-pdo": "*",
"ext-yaml": "*",
"grasmash/yaml-expander": "^3",
"middlewares/utils": "^4.0",
"psr/http-server-middleware": "^1.0",
"php-di/php-di": "^7",
"monolog/monolog": "^3",
"phpfastcache/phpfastcache": "^9",
"psr/log": "^3",
"selective/transformer": "^1",
"slim/slim": "^4",
"symfony/yaml": "^6",
"vlucas/phpdotenv": "^5",
"voku/anti-xss": "^4",
"web-token/jwt-framework": "^3",
"symfony/notifier": "^6",
"symfony/telegram-notifier": "^6.4",
"symfony/mailer": "^6",
"paragonie/csp-builder": "^3",
"opis/json-schema": "^2.3",
"ramsey/uuid": "^4.7",
"stolt/json-merge-patch": "^2.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2"
},
"autoload": {
"psr-4": {
"Glued\\Lib\\": "src/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
}
}
}