-
Notifications
You must be signed in to change notification settings - Fork 17
/
composer.json
72 lines (72 loc) · 1.69 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "leventcz/laravel-top",
"description": "Real-time monitoring straight from the command line for Laravel applications.",
"keywords": [
"laravel",
"php",
"cli",
"metrics",
"realtime-monitoring",
"apm",
"command-line-tool"
],
"homepage": "https://github.com/leventcz/laravel-top",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Levent Corapsiz",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2.0",
"ext-pcntl": "*",
"laravel/framework": "^10.0|^11.0",
"react/event-loop": "^1.5"
},
"require-dev": {
"laravel/pint": "^1.15",
"mockery/mockery": "^1.6",
"pestphp/pest": "^2.34",
"phpstan/phpstan": "^1.10"
},
"autoload": {
"psr-4": {
"Leventcz\\Top\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Leventcz\\Top\\ServiceProvider"
],
"aliases": {
"Top": "Leventcz\\Top\\Facades\\Top"
}
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"test:unit": "pest --colors=always",
"test:styling": "pint --test -v",
"test:analyse": "phpstan analyse --ansi",
"test": [
"@test:unit",
"@test:analyse",
"@test:styling"
]
}
}