update v1.0.4

This commit is contained in:
sujitprasad
2016-01-04 18:05:45 +05:30
parent 372485336b
commit 4864e5a3f1
529 changed files with 20956 additions and 8178 deletions

View File

@@ -29,7 +29,7 @@ Just add following code in the head of your script:
use PhpImap\IncomingMail;
use PhpImap\IncomingMailAttachment;
### [Usage example](https://github.com/barbushin/php-imap/blob/master/example/index.php)
### Usage example
```php
$mailbox = new PhpImap\Mailbox('{imap.gmail.com:993/imap/ssl}INBOX', 'some@gmail.com', '*********', __DIR__);

View File

@@ -17,11 +17,12 @@
}
],
"require": {
"php": ">=5.3.0"
"php": ">=5.3.0",
"ext-imap": "*"
},
"autoload": {
"psr-0": {
"PhpImap": "src/"
"psr-4": {
"PhpImap\\": "src/PhpImap/"
}
},
"minimum-stability": "stable"

View File

@@ -62,4 +62,5 @@ class IncomingMailAttachment {
public $id;
public $name;
public $filePath;
public $disposition;
}