forked from mtarld/api-platform-ms-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
64 lines (64 loc) · 1.5 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
{
"name": "mtarld/api-platform-ms-bundle",
"type": "symfony-bundle",
"description": "API Platform Microservice Bundle",
"keywords": [
"symfony",
"bundle",
"symfony-bundle",
"api-plaform",
"microservice",
"api"
],
"license": "MIT",
"authors": [
{
"name": "Mathias Arlaud",
"email": "mathias.arlaud@gmail.com"
}
],
"require": {
"php": "^7.2|^8.0",
"api-platform/core": "^2.6.4",
"symfony/http-client": "^5.4|^6.0",
"symfony/property-access": "^5.4|^6.0",
"symfony/serializer": "^5.4|^6.0",
"symfony/validator": "^5.4|^6.0",
"symfony/event-dispatcher": "^5.4|^6.0",
"symfony/polyfill-php80": "^1.20",
"psr/log": "^1.0|^2.0|^3.0"
},
"autoload": {
"psr-4": {
"Mtarld\\ApiPlatformMsBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Mtarld\\ApiPlatformMsBundle\\Tests\\": "tests/"
}
},
"require-dev": {
"doctrine/annotations": "^1.7",
"friendsofphp/php-cs-fixer": "^3.1",
"phpmd/phpmd": "^2.8",
"phpunit/phpunit": "^7.5|^8.4|^9.5",
"psalm/plugin-phpunit": "^0.15",
"symfony/browser-kit": "^5.4|^6.0",
"symfony/framework-bundle": "^5.4|^6.0",
"symfony/phpunit-bridge": "^5.4|^6.0",
"symfony/yaml": "^5.4|^6.0",
"vimeo/psalm": "^3.10|^4.3",
"willdurand/negotiation": "^3.0"
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true
}
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
}
}