This repository has been archived by the owner on Sep 19, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
52 lines (52 loc) · 1.52 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
{
"name": "ocramius/lazy-map",
"description": "A library that provides lazy instantiation logic for a map of objects",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/Ocramius/LazyMap",
"keywords": [
"lazy",
"lazy loading",
"lazy instantiation",
"map",
"service location"
],
"authors": [
{
"name": "Marco Pivetta",
"email": "[email protected]",
"homepage": "http://ocramius.github.io/"
}
],
"require": {
"php": "~8.1.0 || ~8.2.0"
},
"require-dev": {
"doctrine/coding-standard": "^11.1.0",
"roave/infection-static-analysis-plugin": "^1.29.0",
"phpbench/phpbench": "^1.2.9",
"phpunit/phpunit": "^9.6.5",
"vimeo/psalm": "^5.7.7"
},
"autoload": {
"psr-4": {
"LazyMap\\": "src/LazyMap"
}
},
"autoload-dev": {
"psr-4": {
"LazyMapPerformance\\": "test/LazyMapPerformance",
"LazyMapTest\\": "test/LazyMapTest",
"LazyMapTestAsset\\": "test/LazyMapTestAsset"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"infection/extension-installer": false
},
"platform": {
"php": "8.1.99"
}
}
}