forked from laravel/pulse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
95 lines (95 loc) · 2.68 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "laravel/pulse",
"description": "Laravel Pulse is a real-time application performance monitoring tool and dashboard for your Laravel application.",
"keywords": ["laravel"],
"homepage": "https://github.com/laravel/pulse",
"license": "MIT",
"support": {
"issues": "https://github.com/laravel/pulse/issues",
"source": "https://github.com/laravel/pulse"
},
"authors": [
{
"name": "Taylor Otwell",
"email": "taylor@laravel.com"
}
],
"require": {
"php": "^8.1",
"doctrine/sql-formatter": "^1.1",
"guzzlehttp/promises": "^1.0 || ^2.0",
"illuminate/auth": "^10.34",
"illuminate/cache": "^10.34",
"illuminate/config": "^10.34",
"illuminate/console": "^10.34",
"illuminate/contracts": "^10.34",
"illuminate/database": "^10.34",
"illuminate/events": "^10.34",
"illuminate/http": "^10.34",
"illuminate/queue": "^10.34",
"illuminate/redis": "^10.34",
"illuminate/routing": "^10.34",
"illuminate/support": "^10.34",
"illuminate/view": "^10.34",
"livewire/livewire": "^3.2",
"nesbot/carbon": "^2.67"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.7",
"mockery/mockery": "^1.0",
"orchestra/testbench": "^8.16",
"pestphp/pest": "^2.0",
"pestphp/pest-plugin-laravel": "^2.2",
"phpstan/phpstan": "^1.11",
"predis/predis": "^1.0 || ^2.0"
},
"conflict": {
"nunomaduro/collision": "<7.7.0"
},
"autoload": {
"psr-4": {
"Laravel\\Pulse\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
},
"laravel": {
"providers": [
"Laravel\\Pulse\\PulseServiceProvider"
],
"aliases": {
"Pulse": "Laravel\\Pulse\\Facades\\Pulse"
}
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"post-autoload-dump": "@prepare",
"prepare": "@php vendor/bin/testbench package:discover --ansi",
"build": "@php vendor/bin/testbench workbench:build --ansi",
"serve": [
"@build",
"@php vendor/bin/testbench serve"
],
"lint": [
"@php vendor/bin/phpstan analyse"
],
"test": [
"@php vendor/bin/pest"
]
}
}