-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathcomposer.json
55 lines (55 loc) · 1.78 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
{
"name": "martin1982/live-broadcast-bundle",
"type": "symfony-bundle",
"description": "Bundle for live-streaming to various online networks",
"license": "MIT",
"authors": [
{
"name": "Martin de Keijzer",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"ext-fileinfo": "*",
"doctrine/doctrine-bundle": "^2.0",
"doctrine/orm": "^3.0",
"martin1982/facebook-graph-sdk": "^7.0.1",
"google/apiclient-services": "*",
"google/apiclient": "^2.7",
"psr/log": "^3.0",
"react/event-loop": "^1.1",
"symfony/console": "^6.4|^7.0",
"symfony/framework-bundle": "^6.4|^7.0",
"symfony/http-kernel": "^6.4|^7.0",
"symfony/monolog-bundle": "^3.5",
"symfony/validator": "^6.4|^7.0",
"symfony/yaml": "^6.4|^7.0",
"symfony/messenger": "^6.4|^7.0"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"doctrine/doctrine-migrations-bundle": "^3.0",
"escapestudios/symfony2-coding-standard": "^3.1",
"friendsofphp/php-cs-fixer": "dev-master",
"guzzlehttp/guzzle": "^7.0",
"phpunit/phpunit": "^11.0",
"squizlabs/php_codesniffer": "^3.5",
"phpmd/phpmd": "^2.12",
"rector/rector": "^1.0|^2.0"
},
"suggest": {
"doctrine/doctrine-migrations-bundle": "Keep track of updated entities in your database"
},
"autoload": {
"psr-4": { "Martin1982\\LiveBroadcastBundle\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Martin1982\\LiveBroadcastBundle\\Tests\\": "tests/" }
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}