-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
59 lines (53 loc) · 1.8 KB
/
composer.json
File metadata and controls
59 lines (53 loc) · 1.8 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
{
"name": "jsor/stack-hal",
"description": "Stack and Symfony middlewares and utilities for working with the Hypertext Application Language (HAL).",
"keywords": ["stack", "stackphp", "symfony", "hal", "vnd.error", "rest"],
"homepage": "https://github.com/jsor/stack-hal",
"license": "MIT",
"authors": [
{
"name": "Jan Sorgalla",
"email": "jsorgalla@gmail.com"
}
],
"require": {
"php": "^8.0",
"symfony/http-foundation": "^5.4||^6.0",
"symfony/http-kernel": "^5.4||^6.0",
"nocarrier/hal": "^0.9.4"
},
"suggest": {
"symfony/event-dispatcher": "For using the event listeners",
"psr/log": "For using the ExceptionConversionListener",
"symfony/form": "For using FormErrorException",
"symfony/validator": "For using ValidationErrorException",
"willdurand/negotiation": "For using HalNegotiator",
"symfony/serializer": "For using RequestBodyDecoder"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"psr/log": "^1.0||^3.0",
"symfony/event-dispatcher": "^5.4||^6.0",
"symfony/config": "^5.4||^6.0",
"symfony/dependency-injection": "^5.4||^6.0",
"symfony/form": "^5.4||^6.0",
"symfony/translation": "^5.4||^6.0",
"symfony/validator": "^5.4||^6.0",
"symfony/security-core": "^5.4||^6.0",
"symfony/serializer": "^5.4||^6.0",
"willdurand/negotiation": "^3.0",
"phpunit/phpunit": "^9.5",
"friendsofphp/php-cs-fixer": "^3.0",
"vimeo/psalm": "^4.29"
},
"autoload": {
"psr-4": {
"Jsor\\Stack\\Hal\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Jsor\\Stack\\Hal\\": "tests/"
}
}
}