-
Notifications
You must be signed in to change notification settings - Fork 118
/
composer.json
59 lines (59 loc) · 1.84 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
{
"name": "willdurand/hateoas",
"description": "A PHP library to support implementing representations for HATEOAS REST web services",
"license": "MIT",
"authors": [
{
"name": "William Durand",
"email": "william.durand1@gmail.com"
},
{
"name": "Adrien Brault",
"email": "adrien.brault@gmail.com"
},
{
"name": "Asmir Mustafic",
"email": "goetas@gmail.com"
}
],
"require": {
"php": "^8.1",
"jms/metadata": "^2.0",
"jms/serializer": "^3.18.2",
"symfony/expression-language": "^3.4.47 || ~4.0 || ~5.0 || ~6.0 || ~7.0"
},
"require-dev": {
"phpunit/phpunit": "^10.5.38",
"doctrine/annotations": "^1.13.2 || ^2.0",
"doctrine/coding-standard": "^12.0",
"doctrine/persistence": "^1.3.4 | ^2.0 | ^3.0",
"pagerfanta/core": "^2.4 || ^3.0 || ^4.0",
"phpdocumentor/type-resolver": "^1.5.1",
"phpspec/prophecy-phpunit": "^2.0.1",
"phpspec/prophecy": "^1.16",
"symfony/routing": "^3.4.47 || ~4.0 || ~5.0 || ~6.0 || ~7.0",
"symfony/yaml": "^3.4.47 || ~4.0 || ~5.0 || ~6.0 || ~7.0",
"twig/twig": "^1.43 || ^2.13 || ^3.0"
},
"suggest": {
"symfony/yaml": "To use yaml based configuration.",
"symfony/routing": "To use the SymfonyRouteFactory.",
"twig/twig": "To use the Twig extensions."
},
"autoload": {
"psr-4": { "Hateoas\\": "src/" }
},
"config": {
"bin-dir": "bin",
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
}
}
}