-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathcomposer.json
More file actions
85 lines (85 loc) · 2.18 KB
/
Copy pathcomposer.json
File metadata and controls
85 lines (85 loc) · 2.18 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "chamber-orchestra/view-bundle",
"type": "symfony-bundle",
"description": "Symfony bundle providing a typed, reusable view layer for building JSON API responses with automatic property binding and cache-warmed serialization",
"keywords": [
"symfony",
"symfony-bundle",
"view",
"json-api",
"api-response",
"serialization",
"property-binding",
"json",
"rest-api",
"view-model"
],
"homepage": "https://github.com/chamber-orchestra/view-bundle",
"license": "MIT",
"authors": [
{
"name": "Andrew Lukin",
"email": "lukin.andrej@gmail.com",
"homepage": "https://github.com/wtorsi",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/chamber-orchestra/view-bundle/issues",
"source": "https://github.com/chamber-orchestra/view-bundle"
},
"require": {
"php": "^8.5",
"symfony/http-kernel": "8.1.*",
"symfony/serializer": "8.1.*",
"symfony/property-access": "8.1.*",
"symfony/dependency-injection": "8.1.*",
"symfony/config": "8.1.*",
"doctrine/common": "^3.5",
"symfony/framework-bundle": "^8.1",
"symfony/runtime": "^8.1"
},
"require-dev": {
"phpunit/phpunit": "^13.0",
"symfony/test-pack": "^1.2",
"phpstan/phpstan": "^2.1",
"friendsofphp/php-cs-fixer": "^3.94",
"phpbench/phpbench": "^1.4",
"symfony/security-core": "^8.1"
},
"autoload": {
"psr-4": {
"ChamberOrchestra\\ViewBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"suggest": {
"symfony/security-core": "Required for user-scoped response caching (SecurityAwareTrait, PrivateCachedView)"
},
"minimum-stability": "stable",
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "8.1.*"
}
},
"config": {
"allow-plugins": {
"symfony/runtime": true
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"analyse": "vendor/bin/phpstan analyse",
"cs-check": "vendor/bin/php-cs-fixer fix --dry-run --diff",
"cs-fix": "vendor/bin/php-cs-fixer fix",
"bench": "vendor/bin/phpbench run --report=default"
}
}