-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
41 lines (41 loc) · 910 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
40
41
{
"name": "webman-tech/laravel-cache",
"type": "library",
"license": "MIT",
"description": "Webman plugin webman-tech/laravel-cache",
"require": {
"php": ">=7.3",
"illuminate/cache": ">=8.0",
"illuminate/config": ">=8.0"
},
"require-dev": {
"illuminate/database": ">=8.0",
"illuminate/events": ">=8.0",
"illuminate/filesystem": ">=8.0",
"illuminate/redis": ">=8.0",
"phpunit/phpunit": "^9",
"psr/cache": "^1.0",
"psr/simple-cache": "^1.0",
"symfony/cache": "^5.4",
"workerman/webman-framework": "^1.4"
},
"autoload": {
"psr-4": {
"WebmanTech\\LaravelCache\\": "src"
},
"files": [
"src/helper.php"
]
},
"autoload-dev": {
"psr-4": {
"WebmanTech\\LaravelCache\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"test": "phpunit --testdox --no-interaction"
}
}