-
Notifications
You must be signed in to change notification settings - Fork 25
/
composer.json
66 lines (66 loc) · 1.77 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"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"
}
}