This repository was archived by the owner on Jan 14, 2025. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
68 lines (67 loc) · 1.9 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
66
67
68
{
"name": "vaderlab/video-portal",
"description": "Video portal based on Micro Framework",
"type": "project",
"license": "GPL-3.0-only",
"repositories": [
],
"require-dev": {
"symfony/var-dumper": "^6.0",
"phpunit/phpunit": "^9",
"friendsofphp/php-cs-fixer": "^3.13",
"squizlabs/php_codesniffer": "^3.7",
"phpcompatibility/php-compatibility": "^9.3",
"phpstan/phpstan": "^1.9",
"vimeo/psalm": "^5.4"
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"authors": [
{
"name": "Stanislau Komar",
"email": "[email protected]"
}
],
"require": {
"php": " >= 8.2",
"micro/kernel-app": "^1",
"micro/plugin-locator": "^1",
"micro/plugin-logger-monolog": "^1",
"micro/plugin-event-emitter": "^1",
"micro/plugin-redis": "^1",
"micro/plugin-http": "^1",
"micro/plugin-console": "^1",
"micro/plugin-oauth2-client-keycloak": "^1",
"micro/plugin-uuid": "^1",
"micro/plugin-doctrine": "^1",
"micro/plugin-dto": "^1",
"micro/plugin-security": "^1",
"micro/plugin-temporal": "^1",
"micro/plugin-ffmpeg": "^1",
"micro/plugin-filesystem-s3": "^1",
"micro/plugin-elastic": "^1",
"vlucas/phpdotenv": "^5.4",
"symfony/cache": "^6.0",
"doctrine/annotations": "^1.13",
"symfony/event-dispatcher": "^6.0",
"symfony/yaml": "^6.0",
"symfony/config": "^6.0",
"symfony/validator": "^6.1",
"temporal/sdk": "^2",
"spiral/tokenizer": "^3",
"symfony/http-kernel": "^6.2"
},
"scripts": {
"auto-scripts": [
],
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
]
}
}