Skip to content

Commit

Permalink
switch to newest version of PHP Unit
Browse files Browse the repository at this point in the history
  • Loading branch information
danielgp committed Nov 28, 2016
1 parent 3bf1971 commit b8e6758
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 29 deletions.
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@
"license": "MIT",
"authors": [
{
"name": "Daniel Popiniuc",
"email": "danielpopiniuc@gmail.com",
"role": "Developer"
"name": "Daniel Popiniuc",
"email": "danielpopiniuc@gmail.com",
"role": "Developer"
}
],
"require": {
"php": "^5.6 || ^7.0"
},
"require-dev": {
"phpunit/phpunit": ">=5.5",
"phpunit/phpunit": ">=5.6",
"phpunit/php-code-coverage": ">=4.0"
},
"autoload": {
Expand All @@ -23,7 +23,7 @@
]
},
"minimum-stability": "stable",
"prefer-stable": true,
"prefer-stable": true,
"archive": {
"exclude": ["/nbproject", "/vendor", "/tests"]
}
Expand Down
48 changes: 24 additions & 24 deletions phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,29 +22,29 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
-->
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/5.5/phpunit.xsd"
backupGlobals="true"
backupStaticAttributes="false"
bootstrap="tests/php-unit/php-unit--bootstrap.php"
cacheTokens="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
forceCoversAnnotation="false"
mapTestClassNameToCoveredClassName="false"
processIsolation="false"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
stopOnRisky="false"
timeoutForSmallTests="1"
timeoutForMediumTests="10"
timeoutForLargeTests="60"
verbose="false">
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/5.6/phpunit.xsd"
backupGlobals="true"
backupStaticAttributes="false"
bootstrap="tests/php-unit/php-unit--bootstrap.php"
cacheTokens="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
forceCoversAnnotation="false"
mapTestClassNameToCoveredClassName="false"
processIsolation="false"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
stopOnRisky="false"
timeoutForSmallTests="1"
timeoutForMediumTests="10"
timeoutForLargeTests="60"
verbose="false">
<testsuites>
<testsuite name="RomanianTest">
<directory suffix="Test.php">tests/php-unit</directory>
Expand All @@ -63,5 +63,5 @@ THE SOFTWARE.
<log type="junit" target="tests/php-unit/junit.xml" logIncompleteSkipped="false"/>
<log type="testdox-html" target="tests/php-unit/testdox.html"/>
<log type="testdox-text" target="tests/php-unit/testdox.txt"/>
</logging>
</logging>
</phpunit>

0 comments on commit b8e6758

Please sign in to comment.