Skip to content

Commit

Permalink
fix(composer): Add psr-4 autoload
Browse files Browse the repository at this point in the history
  • Loading branch information
unicodeveloper committed Jan 19, 2016
1 parent 926dca4 commit 904831b
Showing 1 changed file with 22 additions and 9 deletions.
31 changes: 22 additions & 9 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,31 @@
{
"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/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]"
}
],
"minimum-stability": "dev",
"require": {
],
"minimum-stability": "stable",
"require": {
"php": ">=5.5.9",
"illuminate/support": "5.2.*",
"sinergi/browser-detector":"6.0.*"
}
},
"autoload": {
"psr-4": {
"Unicodeveloper\\Identify\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Unicodeveloper\\Identify\\Test\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
}
}

0 comments on commit 904831b

Please sign in to comment.