-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathcomposer.json
44 lines (44 loc) · 1.27 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
{
"name": "willdurand/hateoas-bundle",
"description": "Integration of Hateoas into Symfony2.",
"keywords": [ "rest", "hateoas" ],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "William Durand",
"email": "william.durand1@gmail.com"
}
],
"require": {
"php": "^8.1",
"jms/serializer-bundle": "^3.10 || ^4.2 || ^5.4",
"symfony/expression-language": "~3.0 || ~4.0 || ~5.0 || ~6.0 || ~7.0",
"symfony/framework-bundle": "~3.0 || ~4.0 || ~5.0 || ~6.0 || ~7.0",
"willdurand/hateoas": "^3.12@beta"
},
"require-dev": {
"doctrine/annotations": "^1.13.2 || ^2.0",
"doctrine/coding-standard": "^12.0",
"phpunit/phpunit": "^10.5.38",
"symfony/stopwatch": "~3.0 || ~4.0 || ~5.0 || ~6.0 || ~7.0",
"twig/twig": "~1.12|~2.0|~3.0"
},
"conflict": {
"jms/serializer": "<3.18"
},
"autoload": {
"psr-4": { "Bazinga\\Bundle\\HateoasBundle\\": "" }
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
}
}