-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
31 lines (31 loc) · 866 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
{
"name": "consoletvs/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]"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=5.5.9",
"illuminate/support": "^5.0|^6.0",
"sinergi/browser-detector": "6.0.*"
},
"autoload": {
"psr-4": {
"Unicodeveloper\\Identify\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Unicodeveloper\\Identify\\Test\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
}
}