forked from shailesh-ladumor/laravel-pwa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 797 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
{
"name": "ladumor/laravel-pwa",
"description": "this package used for the make pwa website.",
"type": "library",
"keywords": [
"laravel-pwa",
"pwa-laravel",
"laravel",
"php"
],
"require": {
"php": ">=5.6",
"illuminate/support": ">=5.4"
},
"license": "MIT",
"authors": [
{
"name": "Shailesh Ladumor",
"email": "shaileshmladumor@gmail.com"
}
],
"autoload": {
"psr-4": {
"Ladumor\\LaravelPwa\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"\\Ladumor\\LaravelPwa\\PWAServiceProvider"
],
"aliases": {
"LaravelPwa": "Ladumor\\LaravelPwa\\LaravelPwa"
}
}
}
}