-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.22 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.22 KB
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
{
"name": "rob-lester-jr04/call-forwarding",
"description": "A methodology that will reduce database writes and improve inbound request handling",
"keywords": ["database", "write", "forward", "cache", "batch", "bulk", "insert", "update", "redis", "batched", "delayed", "writes", "combined", "consolidated"],
"type": "library",
"require": {
"predis/predis": "^2.2",
"opis/closure": "^3.6"
},
"require-dev": {
"phpunit/phpunit": "^10.2",
"laravel/pint": "^1.15",
"orchestra/testbench": "^6.23|^7.6|^8.0|^9.0"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Lester\\Forwarding\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Lester\\Forwarding\\CallForwardingServiceProvider"
]
}
},
"authors": [
{
"name": "Rob Lester",
"email": "robertlesterjr@mac.com"
}
],
"config": {
"allow-plugins": {
"kylekatarnls/update-helper": true
}
},
"scripts": {
"test": "vendor/bin/phpunit"
}
}