-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
38 lines (38 loc) · 1.05 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": "alanpoulain/api-platform-events-bundle",
"type": "symfony-bundle",
"description": "Makes API Platform send its own events",
"keywords": ["API Platform", "events"],
"license": "MIT",
"authors": [
{
"name": "Alan Poulain",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"ApiPlatform\\EventsBundle\\": ""
},
"exclude-from-classmap": [ "/Tests/" ]
},
"require": {
"php": ">=7.2",
"api-platform/core": "^2.5",
"symfony/event-dispatcher": "^4.0"
},
"require-dev": {
"edgedesign/phpqa": "^1.23",
"friendsofphp/php-cs-fixer": "^2.15",
"phpdocumentor/reflection-docblock": "^4.0.1",
"phpstan/phpstan": "^0.11.19",
"phpunit/phpunit": "^8.3",
"sensiolabs/security-checker": "^6.0",
"symfony/framework-bundle": "^4.0",
"symfony/phpunit-bridge": "^4.3.4",
"vimeo/psalm": "^3.6"
},
"config": {
"sort-packages": true
}
}