-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
68 lines (68 loc) · 2.11 KB
/
composer.json
File metadata and controls
68 lines (68 loc) · 2.11 KB
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
{
"name": "rifrocket/filament-alert-box",
"description": "A modern, customizable alert box plugin for FilamentPHP with render hooks support. Create beautiful alerts with a fluent, chainable API across 4 different layout types.",
"keywords": ["filament", "laravel", "alert", "notification", "ui", "admin", "blade", "tailwind"],
"homepage": "https://github.com/rifrocket/filament-alert-box",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Mohammad Arif",
"email": "mohammad.arif9999@gmail.com",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"filament/filament": "^3.0",
"illuminate/support": "^10.0|^11.0"
},
"require-dev": {
"laravel/pint": "^1.0",
"orchestra/testbench": "^8.0|^9.0",
"phpunit/phpunit": "^10.0|^11.0",
"pestphp/pest": "^2.0",
"pestphp/pest-plugin-laravel": "^2.0"
},
"autoload": {
"psr-4": {
"RifRocket\\FilamentAlertBox\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"RifRocket\\FilamentAlertBox\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"RifRocket\\FilamentAlertBox\\AlertBoxServiceProvider"
],
"aliases": {
"AlertBox": "RifRocket\\FilamentAlertBox\\Facades\\AlertBox"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"scripts": {
"post-autoload-dump": [
"@clear",
"@prepare"
],
"clear": "vendor/bin/testbench package:purge-skeleton --ansi",
"prepare": "vendor/bin/testbench package:discover --ansi",
"build": "vendor/bin/testbench workbench:build --ansi",
"serve": "php vendor/bin/testbench serve",
"test": "vendor/bin/pest",
"test-coverage": "vendor/bin/pest --coverage",
"format": "vendor/bin/pint"
}
}