Skip to content

Commit a5f8064

Browse files
committed
Merge branch 'hkdobrev-psr-4'
2 parents b32ab72 + d93e7f4 commit a5f8064

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ Unit Tests
149149

150150
Setup the test suite using Composer:
151151

152-
$ composer install --dev
152+
$ composer install
153153

154154
Run it using PHPUnit:
155155

composer.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,10 @@
1414
"php": ">=5.3.0"
1515
},
1616
"autoload": {
17-
"psr-0": { "EmailReplyParser": "src/" }
17+
"psr-4": { "EmailReplyParser\\": "src/EmailReplyParser" }
18+
},
19+
"autoload-dev": {
20+
"psr-4": { "EmailReplyParser\\Tests\\": "tests/EmailReplyParser/Tests" }
1821
},
1922
"extra": {
2023
"branch-alias": {

phpunit.xml.dist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
processIsolation="false"
99
stopOnFailure="false"
1010
syntaxCheck="false"
11-
bootstrap="tests/bootstrap.php"
11+
bootstrap="vendor/autoload.php"
1212
>
1313
<testsuites>
1414
<testsuite name="EmailReplyParser Test Suite">

tests/bootstrap.php

Lines changed: 0 additions & 4 deletions
This file was deleted.

0 commit comments

Comments
 (0)