Update composer dependencies and add SES transport

This commit is contained in:
Kijin Sung 2016-05-06 17:33:43 +09:00
parent 7cb194439f
commit a12722ad79
97 changed files with 1516 additions and 409 deletions

View file

@ -1,3 +0,0 @@
src_dir: src
coverage_clover: build/logs/clover.xml
json_path: build/logs/coveralls-upload.json

View file

@ -18,8 +18,7 @@
"ext-pcre": "*"
},
"require-dev": {
"phpunit/phpunit": "~4.8",
"satooshi/php-coveralls": "~1.0"
"phpunit/phpunit": "~4.8"
},
"autoload": {
"psr-4": {

View file

@ -48,12 +48,12 @@ class Converter
$to = realpath($to) ?: $to;
}
$from = $this->normalize($from);
$to = $this->normalize($to);
$from = $this->dirname($from);
$to = $this->dirname($to);
$from = $this->normalize($from);
$to = $this->normalize($to);
$this->from = $from;
$this->to = $to;
}