Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge develop into master #300

Merged
merged 13 commits into from
Apr 30, 2019
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# All of the vendor directory should be installed by running 'composer install'
vendor/
composer.lock

#################
## Eclipse
Expand Down Expand Up @@ -165,3 +166,6 @@ pip-log.txt

# Mac crap
.DS_Store

# NetBeans IDE
nbproject/
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
language: php
php:
- 5.6
- 7.0
- 7.1
- 7.2
- 7.3

before_script:
- composer install --no-interaction
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

### Requirements

* PHP 7.1, 7.2
* PHP 5.6, 7.0, 7.1, 7.2 or 7.3
* IMAP extension must be present; so make sure this line is active in your php.ini: `extension=php_imap.dll`

### Installation by Composer
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
}
],
"require": {
"php": ">=7.1.0",
"php": ">=5.6",
"ext-imap": "*",
"phpunit/phpunit": "^7.5"
"phpunit/phpunit": "^5.7"
},
"autoload": {
"psr-4": {
Expand Down
Loading