Skip to content
This repository has been archived by the owner on Jun 26, 2023. It is now read-only.

Commit

Permalink
ソース配置をPSR-0→PSR-4に変更、PHPUnitの非推奨設定を廃止、php-coverallsをTravis CIでのみインストー…
Browse files Browse the repository at this point in the history
…ルするよう改善
  • Loading branch information
k-holy committed Apr 17, 2015
1 parent 1a1ef3d commit 0b0640c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,11 @@ php:
- 5.3
- 5.4
- 5.5
- 5.6

before_script:
- composer self-update
- composer require satooshi/php-coveralls:0.* --dev
- composer install --dev --no-interaction --prefer-source

script:
Expand Down
5 changes: 1 addition & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,9 @@
}
],
"autoload": {
"psr-0": { "Volcanus\\RadixConverter": "src/" }
"psr-4": { "Volcanus\\RadixConverter\\": "src/" }
},
"require": {
"php": ">=5.3.3"
},
"require-dev": {
"satooshi/php-coveralls": "dev-master"
}
}
4 changes: 2 additions & 2 deletions phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
strict="true"
syntaxCheck="true"
verbose="true"
>
<testsuites>
<testsuite name="Volcanus_RadixConverter">
<directory suffix="Test.php">./tests/Volcanus/RadixConverter/Test/</directory>
<directory suffix="Test.php">./tests/Volcanus/RadixConverter/Test</directory>
</testsuite>
</testsuites>
<filter>
Expand Down
File renamed without changes.

0 comments on commit 0b0640c

Please sign in to comment.