-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathcomposer.json
39 lines (39 loc) · 912 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
36
37
38
39
{
"name": "fig/cache-util",
"description": "Useful utility classes and traits for implementing the PSR cache standard",
"keywords": ["psr", "psr-6", "cache"],
"license": "MIT",
"authors": [
{
"name": "PHP-FIG",
"homepage": "http://www.php-fig.org/"
},
{
"name": "Larry Garfield",
"homepage": "http://www.garfieldtech.com/"
}
],
"require": {
"php": ">=8.0.0",
"psr/cache": "^2.0 | ^3.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^2.3.1"
},
"autoload": {
"psr-4": {
"Fig\\Cache\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Fig\\Cache\\Test\\": "test/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
}
}