-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 904 Bytes
/
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
{
"name": "zenstruck/memoize",
"description": "Helper trait to efficiently cache expensive methods in memory.",
"homepage": "https://github.com/zenstruck/memoize",
"type": "library",
"license": "MIT",
"keywords": ["cache"],
"authors": [
{
"name": "Kevin Bond",
"email": "kevinbond@gmail.com"
}
],
"require": {
"php": ">=8.0"
},
"require-dev": {
"phpstan/phpstan": "^1.4",
"phpunit/phpunit": "^9.6.19",
"symfony/phpunit-bridge": "^6.1",
"symfony/var-dumper": "^5.4|^6.0"
},
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"autoload": {
"psr-4": { "Zenstruck\\": ["src/"] }
},
"autoload-dev": {
"psr-4": { "Zenstruck\\Tests\\": ["tests/"] }
},
"minimum-stability": "dev",
"prefer-stable": true
}