-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
45 lines (45 loc) · 1.34 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
{
"name": "martin1982/live-broadcast-sonata-admin-bundle",
"type": "symfony-bundle",
"description": "Sonata plugin for the live broadcast bundle",
"license": "MIT",
"authors": [
{
"name": "Martin de Keijzer",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.0",
"ext-fileinfo": "*",
"sonata-project/admin-bundle": "^4.0",
"sonata-project/doctrine-orm-admin-bundle": "^4.2",
"martin1982/live-broadcast-bundle": "^7.0",
"symfony/framework-bundle": "^5.4|^6.0",
"psr/container": "^2.0"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"doctrine/doctrine-migrations-bundle": "^3.0",
"escapestudios/symfony2-coding-standard": "^3.1",
"friendsofphp/php-cs-fixer": "^3.0",
"guzzlehttp/guzzle": "^7.0",
"phpunit/phpunit": "^10.0",
"squizlabs/php_codesniffer": "^3.5"
},
"autoload": {
"psr-4": {
"Martin1982\\LiveBroadcastSonataAdminBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Martin1982\\LiveBroadcastSonataAdminBundle\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}