Skip to content

Commit

Permalink
phpMailer 5.2.9 ( Sept 25th 2014 )
Browse files Browse the repository at this point in the history
  • Loading branch information
cybernet committed Jan 22, 2015
1 parent 92ce58d commit 9c07d47
Show file tree
Hide file tree
Showing 164 changed files with 14,028 additions and 18,010 deletions.
43 changes: 43 additions & 0 deletions .travis.yml
@@ -0,0 +1,43 @@
language: php
php:
- 5.3.3
- 5.3
- 5.4
- 5.5

env:
- DB=mysql
- DB=mariadb

services:
- redis-server

install:
- sh -c "if [ '$DB' = 'mariadb' ]; then travis/setup-mariadb.sh; fi"
- sh -c "if [ `php -r "echo (int) version_compare(PHP_VERSION, '5.3.19', '>=');"` = "1" ]; then travis/setup-webserver.sh; fi"
- travis/install-php-extensions.sh
- cd phpBB
- php ../composer.phar install --dev --no-interaction --prefer-source
- cd ..

before_script:
- sh -c "if [ '$DB' = 'postgres' ]; then psql -c 'DROP DATABASE IF EXISTS phpbb_tests;' -U postgres; fi"
- sh -c "if [ '$DB' = 'postgres' ]; then psql -c 'create database phpbb_tests;' -U postgres; fi"
- sh -c "if [ '$DB' = 'mysql' -o '$DB' = 'mariadb' ]; then mysql -e 'create database IF NOT EXISTS phpbb_tests;'; fi"

script:
- cd build
- sh -c "if [ '$TRAVIS_PHP_VERSION' = '5.5' -a '$DB' = 'mysql' ]; then ../phpBB/vendor/bin/phing sniff; fi"
- cd ..
- phpBB/vendor/bin/phpunit --configuration travis/phpunit-$DB-travis.xml

notifications:
email:
recipients:
- dev-team@phpbb.com
on_success: change
on_failure: change

matrix:
allow_failures:
- php: hhvm
5 changes: 5 additions & 0 deletions phpmailer/.gitignore
@@ -0,0 +1,5 @@
docs/phpdoc/
test/message.txt
test/testbootstrap.php
.idea
build/

0 comments on commit 9c07d47

Please sign in to comment.