-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 1.09 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
{
"name": "codexsoft/transmission-symfony-bridge",
"license": "MIT",
"description": "Connects Symfony Framework Bundle with CodexSoft Transmission",
"authors": [
{
"name": "Dmitriy V Kozubskiy",
"email": "kozubsky@inbox.ru",
"homepage": "http://codexsoft.ru/",
"role": "Maintainer"
}
],
"support": {
"issues": "https://github.com/codexsoft/transmission-symfony-bridge/issues",
"source": "https://github.com/codexsoft/transmission-symfony-bridge"
},
"require": {
"php": "^7.4|^8",
"ext-json": "*",
"symfony/http-foundation": "^4.3|^5.0",
"codexsoft/transmission-schema": "^2"
},
"require-dev": {
"phpunit/phpunit": "^9",
"roave/security-advisories": "dev-master"
},
"autoload": {
"psr-4": {
"CodexSoft\\Transmission\\SymfonyBridge\\": ["src/"]
}
},
"autoload-dev": {
"psr-4": {
"CodexSoft\\Transmission\\SymfonyBridge\\": ["tests/unit/"],
"": ["vendor/"]
}
}
}