-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
54 lines (54 loc) · 1.33 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
{
"name": "phlak/stash",
"description": "Simple PHP caching library",
"license": "MIT",
"authors": [
{
"name": "Chris Kankiewicz",
"email": "Chris@ChrisKankiewicz.com"
}
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/PHLAK"
},
{
"type": "paypal",
"url": "https://paypal.me/ChrisKankiewicz"
}
],
"support": {
"issues": "https://github.com/PHLAK/Stash/issues"
},
"require": {
"php": ">=7.2",
"nesbot/carbon": "^1.21 || ^2.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.0",
"phlak/coding-standards": "^1.2",
"psy/psysh": "^0.10.0",
"vimeo/psalm": "^4.2",
"yoast/phpunit-polyfills": "^1.0.3"
},
"suggest": {
"ext-apcu": "Required to use the APCu cache driver.",
"ext-memcached": "Required to use the Memcached driver.",
"ext-redis": "Required to use the Redis cache driver."
},
"autoload": {
"psr-4": {
"PHLAK\\Stash\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PHLAK\\Stash\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true,
"optimize-autoloader": true
}
}