-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
58 lines (58 loc) · 1.41 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
55
56
57
58
{
"name": "wendelladriel/cache-ttl-helper",
"description": "Helper Enum for handling cache TTLs in a simple, easy and friendly way",
"type": "library",
"keywords": [
"cache",
"ttl",
"helper",
"enum"
],
"license": "MIT",
"autoload": {
"psr-4": {
"WendellAdriel\\CacheTtlHelper\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WendellAdriel\\CacheTtlHelper\\Tests\\": "tests/"
}
},
"support": {
"issues": "https://github.com/WendellAdriel/cache-ttl-helper/issues",
"source": "https://github.com/WendellAdriel/cache-ttl-helper"
},
"authors": [
{
"name": "Wendell Adriel",
"email": "wendelladriel.ti@gmail.com"
}
],
"require": {
"php": "^8.1"
},
"require-dev": {
"pestphp/pest": "^2.15",
"laravel/pint": "^1.11",
"phpstan/phpstan": "^1.10"
},
"scripts": {
"lint": "pint",
"test:lint": "pint --test",
"test:unit": "./vendor/bin/pest --order-by random",
"test:static": "phpstan analyse",
"test": [
"@test:lint",
"@test:unit",
"@test:static"
]
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}