composer.json
{
"name": "grafite/forms",
"description": "A remarkably magical form package for Laravel.",
"license": "MIT",
"keywords": [
"Laravel",
"Forms",
"Laravel Forms",
"LaravelCollective HTML"
],
"suggest": {
"spatie/honeypot": "Allows use of the HoneyPot HTMLSnippet"
},
"authors": [
{
"name": "Matt Lantz",
"email": "mattlantz@gmail.com"
}
],
"require": {
"php": ">=8.2",
"illuminate/support": "^11.0",
"illuminate/view": "^11.0",
"matthiasmullie/minify": "^1.3"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"mockery/mockery": "^1.0",
"mikey179/vfsstream": "^1.6",
"orchestra/testbench": "^9.0"
},
"autoload": {
"psr-4": {
"Grafite\\Forms\\": "src/"
},
"files": [
"src/Helpers/form.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Grafite\\Forms\\FormsProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"check-style": "phpcs -p --standard=PSR12 src --extensions=php",
"fix-style": "phpcbf -p --standard=PSR12 src --extensions=php",
"insights": "vendor/bin/phpinsights",
"analyse": "vendor/bin/phpstan analyse ./src --memory-limit=2G --error-format=table",
"test": "XDEBUG_MODE=coverage ./vendor/bin/phpunit --coverage-clover clover.xml && php coverage-checker.php clover.xml 50"
}
}