Skip to content

Commit 3106526

Browse files
authored
Merge pull request #8 from reactphp-parallel/next-gen-qa-set-up
Next Gen QA set up
2 parents 74bb3fd + 9ca16cf commit 3106526

File tree

9 files changed

+18
-107
lines changed

9 files changed

+18
-107
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
var
12
vendor

.php_cs

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

.scrutinizer.yml

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

composer-require-checker.json renamed to etc/qa/composer-require-checker.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22
"symbol-whitelist" : [
33
"null", "true", "false",
44
"static", "self", "parent",
5-
"array", "string", "int", "float", "bool", "iterable", "callable", "void", "object"
5+
"array", "string", "int", "float", "bool", "iterable", "callable", "void", "object",
6+
"WyriHaximus\\Constants\\ComposerAutoloader\\LOCATION", "WyriHaximus\\Constants\\Boolean\\FALSE_",
7+
"WyriHaximus\\Constants\\Boolean\\TRUE_", "WyriHaximus\\Constants\\Numeric\\ZERO"
68
],
79
"php-core-extensions" : [
810
"Core",

phpcs.xml.dist renamed to etc/qa/phpcs.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<arg name="cache" value=".phpcs.cache" /> <!-- cache the results and don't commit them -->
77
<arg value="np" /> <!-- n = ignore warnings, p = show progress -->
88

9-
<file>src</file>
9+
<file>../../src</file>
1010

1111
<rule ref="WyriHaximus-OSS" />
1212
</ruleset>

etc/qa/phpstan.neon

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
parameters:
2+
checkMissingIterableValueType: false
3+
ignoreErrors:
4+
- '#Function sleep is unsafe to use.#'
5+
- '#Do not throw the \\Exception base class. Instead, extend the \\Exception base class.#'
6+
ergebnis:
7+
classesAllowedToBeExtended:
8+
- Exception
9+
includes:
10+
- ../../vendor/wyrihaximus/async-test-utilities/rules.neon
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit bootstrap="vendor/autoload.php" colors="true">
2+
<phpunit bootstrap="../../vendor/autoload.php" colors="true">
33
<testsuites>
44
<testsuite name="HtmlCompress Test Suite">
5-
<directory>tests/</directory>
5+
<directory>../../tests/</directory>
66
</testsuite>
77
</testsuites>
88
<filter>
99
<whitelist>
10-
<directory suffix=".php">src/</directory>
10+
<directory suffix=".php">../../src/</directory>
1111
</whitelist>
1212
</filter>
1313
</phpunit>

phpstan.neon

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

var/.gitkeep

Whitespace-only changes.

0 commit comments

Comments
 (0)