Skip to content

Commit

Permalink
Merge branch 'hkdobrev-psr-4'
Browse files Browse the repository at this point in the history
  • Loading branch information
willdurand committed Oct 1, 2015
2 parents b32ab72 + d93e7f4 commit a5f8064
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -149,7 +149,7 @@ Unit Tests

Setup the test suite using Composer:

$ composer install --dev
$ composer install

Run it using PHPUnit:

Expand Down
5 changes: 4 additions & 1 deletion composer.json
Expand Up @@ -14,7 +14,10 @@
"php": ">=5.3.0"
},
"autoload": {
"psr-0": { "EmailReplyParser": "src/" }
"psr-4": { "EmailReplyParser\\": "src/EmailReplyParser" }
},
"autoload-dev": {
"psr-4": { "EmailReplyParser\\Tests\\": "tests/EmailReplyParser/Tests" }
},
"extra": {
"branch-alias": {
Expand Down
2 changes: 1 addition & 1 deletion phpunit.xml.dist
Expand Up @@ -8,7 +8,7 @@
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
bootstrap="tests/bootstrap.php"
bootstrap="vendor/autoload.php"
>
<testsuites>
<testsuite name="EmailReplyParser Test Suite">
Expand Down
4 changes: 0 additions & 4 deletions tests/bootstrap.php

This file was deleted.

0 comments on commit a5f8064

Please sign in to comment.