-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcomposer.json
More file actions
69 lines (69 loc) · 1.66 KB
/
composer.json
File metadata and controls
69 lines (69 loc) · 1.66 KB
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
65
66
67
68
69
{
"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": "[email protected]"
}
],
"require": {
"php": "^8.1",
"api-platform/json-api": "^3.4.9|^4.0",
"api-platform/json-hal": "^3.4.9|^4.0",
"api-platform/jsonld": "^3.4.9|^4.0",
"api-platform/symfony": "^3.4.9|^4.0",
"psr/log": "^1.0|^2.0|^3.0",
"symfony/event-dispatcher": "^6.4|^7.0",
"symfony/http-client": "^6.4|^7.0",
"symfony/http-foundation": "^6.4|^7.0",
"symfony/serializer": "^6.4|^7.0",
"symfony/validator": "^6.4|^7.0"
},
"autoload": {
"psr-4": {
"Mtarld\\ApiPlatformMsBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Mtarld\\ApiPlatformMsBundle\\Tests\\": "tests/"
}
},
"require-dev": {
"doctrine/inflector": "^2.0",
"friendsofphp/php-cs-fixer": "^3.1",
"phpmd/phpmd": "^2.8",
"phpunit/phpunit": "^9.6.22",
"psalm/plugin-phpunit": "^0.19",
"rector/rector": "^2.0",
"symfony/browser-kit": "^6.4|^7.0",
"symfony/framework-bundle": "^6.4|^7.0",
"symfony/phpunit-bridge": "^6.4|^7.0",
"symfony/yaml": "^6.4|^7.0",
"vimeo/psalm": "^6.0",
"willdurand/negotiation": "^3.0"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true
}
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev",
"dev-main": "1.x-dev"
}
}
}