-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
53 lines (53 loc) · 1.53 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "codexshaper/laravel-pwa",
"description": "Laravel Progressive Web App",
"keywords": [
"laravel", "pwa", "progressive", "web", "app",
"multi-tenancy", "pwa", "laravel", "multitenancy", "multitenant", "progressive-web-app",
"laravel-pwa", "pwa-laravel", "google-pwa", "ios-pwa", "firefox-pwa", "safari-pwa",
"ios", "android", "chrome", "safari", "firefox"
],
"license": "MIT",
"homepage": "https://github.com/Codexshaper/laravel-pwa",
"support": {
"issues": "https://github.com/Codexshaper/laravel-pwa/issues",
"source": "https://github.com/Codexshaper/laravel-pwa"
},
"authors": [
{
"name": "Md Abu Ahsan Basir",
"email": "maab.career@gmail.com"
}
],
"type": "library",
"minimum-stability": "dev",
"require": {
"php": "^7.0|^7.1|^7.2|^7.3|^7.4|^8.0",
"illuminate/support": "^5.6|^6.0|^7.0|^8.0"
},
"require-dev": {
"phpunit/phpunit": "^7.0|^8.0",
"orchestra/testbench": "^4.0"
},
"autoload": {
"psr-4": {
"CodexShaper\\PWA\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CodexShaper\\PWA\\": "src/",
"CodexShaper\\PWA\\Test\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"CodexShaper\\PWA\\PwaServiceProvider"
],
"aliases": {
"PWA": "CodexShaper\\PWA\\Facades\\PWA"
}
}
}
}