-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.11 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.11 KB
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
{
"name": "labrodev/contactable",
"description": "Configurable Livewire contact form with optional model persistence and notify channels.",
"type": "laravel-package",
"license": "MIT",
"require": {
"php": "^8.2",
"laravel/framework": "^12.0",
"livewire/livewire": "^4.0"
},
"require-dev": {
"larastan/larastan": "^3.0",
"laravel/pint": "^1.0",
"orchestra/testbench": "^10.0",
"phpunit/phpunit": "^11.0"
},
"autoload": {
"psr-4": {
"Labrodev\\Contactable\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Labrodev\\Contactable\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Labrodev\\Contactable\\ContactableServiceProvider"
]
}
},
"scripts": {
"test": "phpunit",
"pint": "vendor/bin/pint",
"stan": "vendor/bin/phpstan analyse --memory-limit=512M"
},
"config": {
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true
}