composer.json
{
"name": "laragear/alerts",
"description": "Set multiple alerts from your backend, render them in the frontend.",
"type": "library",
"license": "MIT",
"minimum-stability": "stable",
"prefer-stable": true,
"keywords": [
"alerts",
"notifications",
"flash",
"session",
"laravel"
],
"authors": [
{
"name": "Italo Israel Baeza Cabrera",
"email": "darkghosthunter@gmail.com",
"homepage": "https://github.com/sponsors/DarkGhostHunter"
}
],
"support": {
"source": "https://github.com/laragear/alerts",
"issues": "https://github.com/laragear/alerts/issues"
},
"require": {
"php": "8.*",
"ext-json": "*",
"illuminate/config": "9.*|10.*",
"illuminate/http": "9.*|10.*",
"illuminate/support": "9.*|10.*",
"illuminate/collections": "9.*|10.*",
"illuminate/session": "9.*|10.*",
"illuminate/view": "9.*|10.*",
"illuminate/routing": "9.*|10.*"
},
"require-dev": {
"orchestra/testbench": "^7.22|8.*",
"jetbrains/phpstorm-attributes": "1.*"
},
"autoload": {
"psr-4": {
"Laragear\\Alerts\\": "src"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit --coverage-clover build/logs/clover.xml",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Laragear\\Alerts\\AlertsServiceProvider"
],
"aliases": {
"Alert": "Laragear\\Alerts\\Facades\\Alert"
}
}
},
"funding": [
{
"type": "Github Sponsorship",
"url": "https://github.com/sponsors/DarkGhostHunter"
},
{
"type": "Paypal",
"url": "https://paypal.me/darkghosthunter"
}
]
}