Skip to content

Commit

Permalink
Prevent unfinalize usage
Browse files Browse the repository at this point in the history
  • Loading branch information
mabdullahsari committed Sep 28, 2023
1 parent dd3e288 commit 4c95ad2
Showing 1 changed file with 16 additions and 10 deletions.
26 changes: 16 additions & 10 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
{
"name": "masmerise/livewire-toaster",
"description": "Beautiful toast notifications for Laravel / Livewire.",
"license": "MIT",
"keywords": [
"alert",
"laravel",
"livewire",
"toast",
"toaster"
],
"homepage": "https://github.com/masmerise/livewire-toaster",
"license": "MIT",
"authors": [
{
"name": "Muhammed Sari",
"email": "[email protected]",
"role": "Developer"
}
],
"homepage": "https://github.com/masmerise/livewire-toaster",
"require": {
"php": "~8.2",
"laravel/framework": "^10.0",
Expand All @@ -29,6 +29,11 @@
"orchestra/testbench": "^8.0",
"phpunit/phpunit": "^10.0"
},
"conflict": {
"stevebauman/unfinalize": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Masmerise\\Toaster\\": "src"
Expand All @@ -39,12 +44,6 @@
"Tests\\": "tests"
}
},
"scripts": {
"format": "vendor/bin/pint",
"larastan": "vendor/bin/phpstan analyse --memory-limit=2G",
"test": "vendor/bin/phpunit",
"verify": ["@larastan", "@test"]
},
"config": {
"sort-packages": true
},
Expand All @@ -58,6 +57,13 @@
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
"scripts": {
"format": "vendor/bin/pint",
"larastan": "vendor/bin/phpstan analyse --memory-limit=2G",
"test": "vendor/bin/phpunit",
"verify": [
"@larastan",
"@test"
]
}
}

0 comments on commit 4c95ad2

Please sign in to comment.