-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
34 lines (33 loc) · 1.06 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
{
"name": "kwenziwa/devicedetector",
"description": "Device Detector is a versatile, easy-to-use package for project that provides seamless device and operating system detection. Leveraging the robustness of mobiledetect/mobiledetectlib, this package allows developers to quickly identify whether a user is accessing their application from a mobile device, tablet, or desktop and determine the operating system, such as iOS or Android.",
"version": "1.0.1",
"type": "package",
"require": {
"php": "^7.3|^8.0",
"mobiledetect/mobiledetectlib": "^2.8"
},
"require-dev": {
"phpunit/phpunit": "^9.0"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Kwenziwa\\DeviceDetector\\": "src/"
}
},
"authors": [
{
"name": "Kwenziwa Lizwi Khanyile",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"extra": {
"laravel": {
"providers": [
"Kwenziwa\\DeviceDetector\\DeviceDetectorServiceProvider"
]
}
}
}