-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 906 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
39
{
"name": "wire-elements/livewire-strict",
"description": "Add strict mode to Livewire.",
"require": {
"php": "^8.1"
},
"license": "MIT",
"autoload": {
"psr-4": {
"WireElements\\LivewireStrict\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"authors": [
{
"name": "Philo Hermans",
"email": "[email protected]"
}
],
"extra": {
"laravel": {
"providers": [
"WireElements\\LivewireStrict\\LivewireStrictServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"phpunit/phpunit": "^10.4",
"laravel/framework": "^10.15.0|^11.0",
"orchestra/testbench": "^8.21.0|^9.1",
"livewire/livewire": "^3.5"
}
}