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 6
/
Copy pathcomposer.json
55 lines (55 loc) · 1.47 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
{
"name": "ocramius/lazy-property",
"description": "A library that provides lazy instantiation logic for object properties",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/Ocramius/LazyProperty",
"minimum-stability": "stable",
"keywords": [
"lazy",
"lazy loading",
"lazy instantiation",
"utility"
],
"authors": [
{
"name": "Marco Pivetta",
"email": "[email protected]",
"homepage": "http://ocramius.github.io/"
},
{
"name": "Niklas Schöllhorn",
"email": "[email protected]",
"role": "Maintainer"
}
],
"require": {
"php": "~8.1.0 || ~8.2.0"
},
"require-dev": {
"phpunit/phpunit": "^9.6.10",
"doctrine/coding-standard": "^10.0.0",
"vimeo/psalm": "^5.13.1",
"roave/infection-static-analysis-plugin": "^1.32.0"
},
"autoload": {
"psr-4": {
"LazyProperty\\": "src/LazyProperty"
}
},
"autoload-dev": {
"psr-4": {
"LazyPropertyTestAsset\\": "tests/LazyPropertyTestAsset",
"LazyPropertyTest\\": "tests/LazyPropertyTest"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"infection/extension-installer": false
},
"platform": {
"php": "8.1.99"
}
}
}