Move to PSR-4 for autoloading

This commit is contained in:
Robin Appelman 2014-04-07 13:54:49 +02:00
commit 46e2daf1ee
12 changed files with 55 additions and 56 deletions

17
composer.json Normal file
View file

@ -0,0 +1,17 @@
{
"name" : "Icewind/SMB",
"description" : "php wrapper from smbclient",
"minimum-stability": "stable",
"license" : "AGPL 3",
"authors" : [
{
"name" : "Robin Appelman",
"email": "icewind@owncloud.com"
}
],
"autoload": {
"psr-4": {
"Icewind\\SMB\\": "src/"
}
}
}