-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (57 loc) · 1.03 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
{
"name": "knotsphp/flushdns",
"description": "Flush DNS cache on your system",
"type": "library",
"license": "MIT",
"keywords": [
"dns",
"flush",
"cache",
"cli"
],
"autoload": {
"psr-4": {
"KnotsPHP\\FlushDNS\\": "src/"
}
},
"authors": [
{
"name": "Eser DENIZ",
"email": "[email protected]"
}
],
"bin": [
"bin/flushdns"
],
"minimum-stability": "stable",
"require": {
"php": "^8.2",
"knotsphp/system": "^1.0"
},
"require-dev": {
"laravel/pint": "^1.18",
"pestphp/pest": "^3.5",
"phpstan/phpstan": "^2.0",
"symfony/var-dumper": "^7.2",
"spatie/ray": "^1.41"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"scripts": {
"test": "./vendor/bin/pest -p",
"pint": "./vendor/bin/pint",
"phpstan": "./vendor/bin/phpstan",
"static": [
"@composer pint",
"@composer phpstan"
],
"qa": [
"@composer pint",
"@composer phpstan",
"@composer test"
]
}
}