Skip to content

Commit

Permalink
Update to PSR-4
Browse files Browse the repository at this point in the history
  • Loading branch information
nachosalvador committed Aug 23, 2016
1 parent 224dfcc commit 92e6db1
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 9 deletions.
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
"homepage": "https://github.com/carlosbuenosvinos/php-kata",
"type": "library",
"require-dev": {
"phpunit/phpunit": "3.7.*@dev",
"phpunit/phpunit": "5.5.*@dev",
"mockery/mockery": "dev-master@dev",
"phpspec/phpspec": "2.0.*@dev"
"phpspec/phpspec": "3.0.*@dev"
},
"license": "MIT",
"authors": [
Expand All @@ -17,8 +17,8 @@
}
],
"autoload": {
"psr-0": {
"Kata": "src/"
"psr-4": {
"Kata\\": "src/"
}
},
"config": {
Expand Down
7 changes: 2 additions & 5 deletions phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,13 @@

<testsuites>
<testsuite name="Kata Test Suite">
<directory>./src/Kata/Tests/</directory>
<directory>./tests/</directory>
</testsuite>
</testsuites>

<filter>
<whitelist>
<directory>./src/Kata/</directory>
<exclude>
<directory>./src/Kata/*/Tests</directory>
</exclude>
<directory>./src/</directory>
</whitelist>
</filter>
</phpunit>
File renamed without changes.
File renamed without changes.

0 comments on commit 92e6db1

Please sign in to comment.