Skip to content

Commit

Permalink
Last try for prefer-lowest
Browse files Browse the repository at this point in the history
  • Loading branch information
massimilianobraglia committed Jan 18, 2019
1 parent 02574cb commit f92521e
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 25 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
composer.lock
vendor/
bin/
phpunit.xml
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"symfony/asset": "^2.8|^3.0|^4.0",
"symfony/browser-kit": "^2.8|^3.0|^4.0",
"symfony/css-selector": "^2.3|^3.0|^4.0",
"symfony/swiftmailer-bundle": "^2.5|^3.0",
"symfony/swiftmailer-bundle": "^2.6|^3.0",
"symfony/templating": "^2.8|^3.0|^4.0",
"symfony/twig-bundle": "^2.8|^3.0|^4.0",
"twilio/sdk": "^5.0"
Expand Down
24 changes: 0 additions & 24 deletions phpunit.xml

This file was deleted.

25 changes: 25 additions & 0 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="UTF-8"?>

<!-- https://phpunit.de/manual/current/en/appendixes.configuration.html -->
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/6.5/phpunit.xsd"
backupGlobals="false"
colors="true"
bootstrap="bootstrap.php"
>
<php>
<ini name="error_reporting" value="-1" />
</php>

<testsuites>
<testsuite name="NotifireBundle Test Suite">
<directory>tests/</directory>
</testsuite>
</testsuites>

<filter>
<whitelist>
<directory>src/</directory>
</whitelist>
</filter>
</phpunit>

0 comments on commit f92521e

Please sign in to comment.