-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathcomposer.json
46 lines (46 loc) · 1.23 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
{
"name": "unicodeveloper/laravel-identify",
"description": "A Laravel 5 Package Provider to Identify/detect a user's browser, device, operating system and Language",
"keywords": ["github", "laravel","Open Source","Evangelist", "Detect", "Identify", "Browser", "Operating System", "Language"],
"license": "MIT",
"authors": [
{
"name": "unicodeveloper",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1.3",
"illuminate/support": "~5.7.0|~5.8.0",
"sinergi/browser-detector": "6.1.*"
},
"require-dev": {
"phpunit/phpunit": "~6.0.0",
"mockery/mockery": "0.9.*",
"scrutinizer/ocular": "~1.1",
"satooshi/php-coveralls": "^0.7.0"
},
"autoload": {
"psr-4": {
"Unicodeveloper\\Identify\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Unicodeveloper\\Identify\\Test\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"extra": {
"laravel": {
"providers": [
"Unicodeveloper\\Identify\\IdentifyServiceProvider"
],
"aliases": {
"Identify": "Unicodeveloper\\Identify\\Facades\\IdentifyFacade"
}
}
}
}