-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
29 lines (29 loc) · 845 Bytes
/
composer.json
File metadata and controls
29 lines (29 loc) · 845 Bytes
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
{
"type": "symfony-bundle",
"name": "cvek/collection",
"description": "Adapter for tightenco/collect bundle to be usable with private and virtual properties in Symfony projects.",
"keywords": ["Collection", "Laravel", "Symfony", "PropertyAccess", "tightenco"],
"license": "MIT",
"require": {
"php": "^7.2|^8.0",
"tightenco/collect": "8.34.0",
"symfony/property-access": "^4|^5",
"symfony/cache": "^4|^5",
"ext-json": "*"
},
"authors": [
{
"name": "Sergey Logachev",
"email": "serg@baitek.org"
}
],
"autoload": {
"files": [
"src/helpers.php"
],
"psr-4": {
"Tightenco\\Collect\\Support\\Traits\\": "src/Traits",
"Tightenco\\Collect\\Support\\": "src"
}
}
}