Skip to content

Commit 904831b

Browse files
fix(composer): Add psr-4 autoload
1 parent 926dca4 commit 904831b

File tree

1 file changed

+22
-9
lines changed

1 file changed

+22
-9
lines changed

composer.json

Lines changed: 22 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,31 @@
11
{
2-
"name": "unicodeveloper/laravel-identify",
3-
"description": "A Laravel 5 Package Provider to Identify/detect a user's browser, device, operating system and Language",
4-
"keywords": ["github", "laravel","Open Source","Evangelist", "Detect", "Identify", "Browser", "Operating System", "Language"],
5-
"license": "MIT",
6-
"authors": [
2+
"name": "unicodeveloper/laravel-identify",
3+
"description": "A Laravel 5 Package Provider to Identify/detect a user's browser, device, operating system and Language",
4+
"keywords": ["github", "laravel","Open Source","Evangelist", "Detect", "Identify", "Browser", "Operating System", "Language"],
5+
"license": "MIT",
6+
"authors": [
77
{
88
"name": "unicodeveloper",
99
"email": "prosperotemuyiwa@gmail.com"
1010
}
11-
],
12-
"minimum-stability": "dev",
13-
"require": {
11+
],
12+
"minimum-stability": "stable",
13+
"require": {
1414
"php": ">=5.5.9",
1515
"illuminate/support": "5.2.*",
1616
"sinergi/browser-detector":"6.0.*"
17-
}
17+
},
18+
"autoload": {
19+
"psr-4": {
20+
"Unicodeveloper\\Identify\\": "src/"
21+
}
22+
},
23+
"autoload-dev": {
24+
"psr-4": {
25+
"Unicodeveloper\\Identify\\Test\\": "tests"
26+
}
27+
},
28+
"scripts": {
29+
"test": "vendor/bin/phpunit"
30+
}
1831
}

0 commit comments

Comments
 (0)