-
Notifications
You must be signed in to change notification settings - Fork 175
/
composer.json
96 lines (96 loc) · 2.85 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
96
{
"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": "[email protected]"
}
],
"require": {
"php": "^8.1",
"guzzlehttp/promises": "^1.0|^2.0",
"doctrine/sql-formatter": "^1.4.1",
"illuminate/auth": "^10.48.4|^11.0.8",
"illuminate/cache": "^10.48.4|^11.0.8",
"illuminate/config": "^10.48.4|^11.0.8",
"illuminate/console": "^10.48.4|^11.0.8",
"illuminate/contracts": "^10.48.4|^11.0.8",
"illuminate/database": "^10.48.4|^11.0.8",
"illuminate/events": "^10.48.4|^11.0.8",
"illuminate/http": "^10.48.4|^11.0.8",
"illuminate/queue": "^10.48.4|^11.0.8",
"illuminate/redis": "^10.48.4|^11.0.8",
"illuminate/routing": "^10.48.4|^11.0.8",
"illuminate/support": "^10.48.4|^11.0.8",
"illuminate/view": "^10.48.4|^11.0.8",
"livewire/livewire": "^3.4.9",
"symfony/console": "^6.0|^7.0",
"nesbot/carbon": "^2.67|^3.0"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.7",
"mockery/mockery": "^1.0",
"orchestra/testbench": "^8.23.1|^9.0",
"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"
]
}
}