Files
php-flasher/composer.json
T
2022-11-30 21:18:15 +01:00

74 lines
2.4 KiB
JSON

{
"name": "php-flasher/php-flasher",
"description": "Repository for PHPFlasher development",
"type": "library",
"license": "MIT",
"minimum-stability": "stable",
"prefer-stable": true,
"authors": [
{
"name": "Younes KHOUBZA",
"email": "younes.khoubza@gmail.com",
"homepage": "https://www.linkedin.com/in/younes-khoubza",
"role": "Developer"
}
],
"require": {
"php": ">=5.3",
"ext-json": "*",
"ext-mbstring": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.13",
"laravel/framework": "^9.42",
"livewire/livewire": "^2.10",
"orchestra/testbench": "^7.15",
"phpstan/phpstan": "^1.9",
"phpunit/phpunit": "^9.5",
"symfony/symfony": "^6.2"
},
"autoload": {
"files": [
"src/Cli/Laravel/notify.php",
"src/Laravel/flasher.php",
"src/Noty/Laravel/noty.php",
"src/Notyf/Laravel/notyf.php",
"src/Pnotify/Laravel/pnotify.php",
"src/SweetAlert/Laravel/sweetalert.php",
"src/Toastr/Laravel/toastr.php"
],
"psr-4": {
"Flasher\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Flasher\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Flasher\\Laravel\\FlasherServiceProvider",
"Flasher\\Toastr\\Laravel\\FlasherToastrServiceProvider",
"Flasher\\Noty\\Laravel\\FlasherNotyServiceProvider",
"Flasher\\Pnotify\\Laravel\\FlasherPnotifyServiceProvider",
"Flasher\\Notyf\\Laravel\\FlasherNotyfServiceProvider",
"Flasher\\SweetAlert\\Laravel\\FlasherSweetAlertServiceProvider",
"Flasher\\Cli\\Laravel\\FlasherCliServiceProvider"
],
"aliases": {
"Flasher": "Flasher\\Laravel\\Facade\\Flasher",
"Toastr": "Flasher\\Toastr\\Laravel\\Facade\\Toastr",
"Noty": "Flasher\\Laravel\\Facade\\Flasher",
"Pnotify": "Flasher\\Pnotify\\Laravel\\Facade\\Pnotify",
"Notyf": "Flasher\\Notyf\\Laravel\\Facade\\Notyf",
"SweetAlert": "Flasher\\SweetAlert\\Laravel\\Facade\\SweetAlert"
}
}
}
}