-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
29 lines (29 loc) · 714 Bytes
/
composer.json
File metadata and controls
29 lines (29 loc) · 714 Bytes
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
{
"name": "ophelios/php-apcu-cache",
"description": "Simple APCu cache strategy compatible with PSR-16 for PHP.",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Moralis\\": "src/Cache"
}
},
"authors": [
{
"name": "David Tucker",
"email": "david.tucker@ophelios.com"
}
],
"require": {
"php": ">=8.4",
"psr/simple-cache": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "10.*"
},
"scripts": {
"test": "XDEBUG_MODE=coverage vendor/bin/phpunit",
"test-coverage": "XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-clover clover.xml"
},
"minimum-stability": "dev"
}