-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1.01 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
{
"name": "akhaled/livewire-account-preferences",
"description": "Edit account model using livewire",
"type": "library",
"require": {
"illuminate/support": "^6.0|^7.0|^8.0",
"livewire/livewire": "^2.0",
"akhaled/livewire-sweetalert": "^0.1.0"
},
"require-dev": {
"pestphp/pest": "^0.3.12",
"pestphp/pest-plugin-faker": "^0.3.1",
"phpunit/phpunit": "^9.3.3",
"orchestra/testbench": "^6.18"
},
"license": "MIT",
"authors": [
{
"name": "Amro Khaled",
"email": "[email protected]",
"homepage": "http://akhaled.com",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Akhaled\\LivewireAccountPreferences\\": "src"
}
},
"extra": {
"laravel": {
"providers": [
"Akhaled\\LivewireAccountPreferences\\ServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}