forked from unicodeveloper/laravel-identify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 1.02 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
{
"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": "prosperotemuyiwa@gmail.com"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=5.5.9",
"illuminate/support": "^5.1,<5.5",
"sinergi/browser-detector": "6.0.*"
},
"require-dev": {
"phpunit/phpunit": "5.3.*",
"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"
}
}