Merge pull request #10 from anvyst/master

switching to PSR-4 autoloading standard
This commit is contained in:
Rob Janssen
2016-10-30 22:40:45 +01:00
committed by GitHub
+13 -5
View File
@@ -17,12 +17,20 @@
"issues": "https://github.com/RobThree/TwoFactorAuth/issues",
"source": "https://github.com/RobThree/TwoFactorAuth"
},
"autoload": {
"classmap": [
"lib/"
]
},
"require": {
"php": ">=5.3.0"
},
"require-dev": {
"phpunit/phpunit": "@stable"
},
"autoload": {
"psr-4": {
"RobThree\\Auth\\": "lib"
}
},
"autoload-dev": {
"psr-4": {
"RobThree\\Auth\\Test\\": "tests"
}
}
}