Skip to content

Commit

Permalink
Ah! x7
Browse files Browse the repository at this point in the history
  • Loading branch information
Lukasss93 committed Mar 10, 2024
1 parent 9bc0c01 commit 4d922a7
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 30 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@
"require-dev": {
"illuminate/testing": "^9.0|^10.0|^11.0",
"orchestra/testbench": "^7.0|^8.0|^9.0",
"pestphp/pest": "^2.0",
"pestphp/pest-plugin-mock": "^2.0",
"pestphp/pest": "^1.1",
"pestphp/pest-plugin-mock": "^1.0",
"roave/security-advisories": "dev-latest",
"vimeo/psalm": "^5.0"
},
Expand Down
52 changes: 24 additions & 28 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,33 +1,29 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="vendor/autoload.php"
colors="true"
cacheDirectory=".phpunit.cache">

<testsuites>
<testsuite name="Test Suite">
<directory suffix="Test.php">./tests</directory>
</testsuite>
</testsuites>

<php>
<env name="TELEGRAM_TOKEN" value="TELEGRAM_TOKEN_HERE" force="true"/>
</php>

<source>
<include>
<directory suffix=".php">./src</directory>
</include>
<exclude>
<directory suffix=".php">./tests</directory>
<directory suffix=".php">./src/Facades</directory>
<directory suffix=".php">./src/Log</directory>
<file>./src/NutgramServiceProvider.php</file>
<file>./src/Console/RunCommand.php</file>
<file>./src/Console/BaseMakeCommand.php</file>
<file>./src/Mixins/MixinUtils.php</file>
</exclude>
</source>

>
<testsuites>
<testsuite name="Test Suite">
<directory suffix="Test.php">./tests</directory>
</testsuite>
</testsuites>
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">./src</directory>
</include>
<exclude>
<directory suffix=".php">./tests</directory>
<directory suffix=".php">./src/Facades</directory>
<directory suffix=".php">./src/Log</directory>
<file>./src/NutgramServiceProvider.php</file>
<file>./src/Console/RunCommand.php</file>
<file>./src/Console/BaseMakeCommand.php</file>
<file>./src/Mixins/MixinUtils.php</file>
</exclude>
</coverage>
<php>
<env name="TELEGRAM_TOKEN" value="TELEGRAM_TOKEN_HERE" force="true"/>
</php>
</phpunit>

0 comments on commit 4d922a7

Please sign in to comment.