mivita/packages/laravel-collective-spatie-html-parser/composer.json
2025-08-22 18:18:26 +02:00

39 lines
1.1 KiB
JSON

{
"name": "alban/laravel-collective-spatie-html-parser",
"description": "Adapter class that allows use spatie/laravel-html for old projects that were using the abanondated laravelcollective/html package, and allow to update to new versions of laravel",
"type": "library",
"require": {
"php": "^8.3 | ^8.2 | ^8.0 | ^7.4",
"spatie/laravel-html": "^3.12",
"illuminate/support": "^8.0|^9.0|^10.0|^11.0|^12.0"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Alban\\LaravelCollectiveSpatieHtmlParser\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Alban\\LaravelCollectiveSpatieHtmlParser\\ServiceProvider"
],
"aliases": {
"Form": "Alban\\LaravelCollectiveSpatieHtmlParser\\FormFacade"
}
}
},
"authors": [
{
"name": "Christian Albán",
"email": "christianalbanctdb1d@gmail.com"
}
],
"minimum-stability": "stable",
"config": {
"allow-plugins": {
"kylekatarnls/update-helper": true
}
}
}