clivern-imap/composer.json

37 lines
829 B
JSON

{
"name": "deblan/clivern-imap",
"type": "library",
"description": "Access Mailbox Using PHP IMAP",
"keywords": ["clivern", "imap"],
"license": "MIT",
"homepage": "https://github.com/clivern/imap",
"authors": [
{
"name": "Clivern",
"email": "hello@clivern.com",
"homepage": "http://clivern.com"
}
],
"require": {
"php": ">=5.6.4"
},
"require-dev": {
"phpunit/phpunit": "5.7.27",
"friendsofphp/php-cs-fixer": "2.16.1",
"squizlabs/php_codesniffer": "3.5.4"
},
"autoload": {
"psr-4": {
"Clivern\\Imap\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Clivern\\Imap\\": "tests"
}
},
"scripts": {
"test": "phpunit"
}
}