diff options
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..4ac8b27 --- /dev/null +++ b/composer.json @@ -0,0 +1,25 @@ +{ + "name" : "icewind/smb", + "description" : "php wrapper for smbclient and libsmbclient-php", + "license" : "MIT", + "authors" : [ + { + "name" : "Robin Appelman", + "email": "icewind@owncloud.com" + } + ], + "require" : { + "php": ">=5.3", + "icewind/streams": ">=0.2.0" + }, + "require-dev": { + "satooshi/php-coveralls" : "v1.0.0", + "phpunit/phpunit": "^4.8" + }, + "autoload" : { + "psr-4": { + "Icewind\\SMB\\": "src/", + "Icewind\\SMB\\Test\\": "tests/" + } + } +} |