Skip to content

Commit 3993c7d

Browse files
committed
Merge commit 'refs/pull/58/head' of github.com:khanamiryan/php-qrcode-detector-decoder
2 parents 05a7c07 + e47dfa3 commit 3993c7d

File tree

3 files changed

+14
-26
lines changed

3 files changed

+14
-26
lines changed

composer.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,10 @@
4040
"check-cs": "./vendor/bin/ecs check",
4141
"fix-cs": "./vendor/bin/ecs check --fix",
4242
"tests": "./vendor/bin/phpunit"
43+
},
44+
"autoload-dev": {
45+
"psr-4": {
46+
"Khanamiryan\\QrCodeTests\\": "tests/"
47+
}
4348
}
4449
}

phpunit.xml.dist

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="vendor/autoload.php" backupGlobals="false" backupStaticAttributes="false" colors="true" verbose="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
3-
<coverage>
4-
<include>
5-
<directory suffix=".php">tests/</directory>
6-
</include>
7-
</coverage>
8-
<testsuites>
9-
<testsuite name="Tests">
10-
<directory>tests</directory>
11-
</testsuite>
12-
</testsuites>
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="./vendor/autoload.php" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
3+
<coverage processUncoveredFiles="true">
4+
<include>
5+
<directory suffix=".php">lib</directory>
6+
</include>
7+
</coverage>
8+
<testsuite name="Tests">
9+
<directory suffix="Test.php">tests</directory>
10+
</testsuite>
1311
</phpunit>

tests/bootstrap.php

Lines changed: 0 additions & 15 deletions
This file was deleted.

0 commit comments

Comments
 (0)