-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcomposer.json
38 lines (38 loc) · 1013 Bytes
/
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
{
"name": "bayareawebpro/laravel-multistep-forms",
"description": "Responsable MultiStep Form Builder for Laravel.",
"license": "MIT",
"authors": [
{
"name": "Daniel Alvidrez",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"illuminate/http": "^11.0",
"illuminate/support": "^11.0",
"illuminate/session": "^11.0",
"illuminate/contracts": "^11.0",
"illuminate/validation": "^11.0"
},
"require-dev": {
"phpunit/phpunit": "^11.0",
"orchestra/testbench": "^9.0",
"larastan/larastan": "^2.0"
},
"autoload": {
"psr-4": {
"BayAreaWebPro\\MultiStepForms\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BayAreaWebPro\\MultiStepFormsTests\\": "tests/"
}
},
"scripts": {
"test": "XDEBUG_MODE=coverage vendor/bin/phpunit",
"lint": "vendor/bin/phpstan analyse"
}
}