-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
35 lines (35 loc) · 849 Bytes
/
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
{
"name": "maantje/pulse-database",
"description": "A Laravel Pulse card for database status",
"keywords": ["laravel", "database", "database-status"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Jamie Schouten",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"illuminate/support": "*",
"laravel/pulse": "^1.0.0@beta"
},
"require-dev": {
"orchestra/testbench": "^8",
"mockery/mockery": "^1.5.0",
"phpunit/phpunit": "^10"
},
"autoload": {
"psr-4": {
"Maantje\\Pulse\\Database\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Maantje\\Pulse\\Database\\DatabaseServiceProvider"
]
}
}
}