Skip to content

Commit 7105206

Browse files
committed
WIP
1 parent cc44da7 commit 7105206

File tree

3 files changed

+13
-12
lines changed

3 files changed

+13
-12
lines changed

.gitignore

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,12 @@
11
.idea
2-
.php_cs
3-
.php_cs.cache
4-
.php-cs-fixer.cache
52
.phpunit.result.cache
6-
.DS_STORE
7-
build
3+
.phpunit.cache
84
composer.lock
95
coverage
10-
docs
116
phpunit.xml
12-
psalm.xml
7+
phpstan.neon
138
testbench.yaml
149
vendor
1510
node_modules
16-
phpstan.neon
11+
.phpactor.json
12+
build

phpstan.neon.dist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ includes:
22
- phpstan-baseline.neon
33

44
parameters:
5-
level: 4
5+
level: 5
66
paths:
77
- src
88
- config
99
tmpDir: build/phpstan
1010
checkOctaneCompatibility: true
1111
checkModelProperties: true
12-
12+
noEnvCallsOutsideOfConfig: false

phpunit.xml.dist

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.2/phpunit.xsd" backupGlobals="false" bootstrap="vendor/autoload.php" colors="true" processIsolation="false" stopOnFailure="false" executionOrder="random" failOnWarning="true" failOnRisky="true" failOnEmptyTestSuite="true" beStrictAboutOutputDuringTests="true" cacheDirectory=".phpunit.cache" backupStaticProperties="false">
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.3/phpunit.xsd" backupGlobals="false"
4+
bootstrap="vendor/autoload.php" colors="true" processIsolation="false" stopOnFailure="false"
5+
executionOrder="random" failOnWarning="true" failOnRisky="true" failOnEmptyTestSuite="true"
6+
beStrictAboutOutputDuringTests="true" cacheDirectory=".phpunit.cache" backupStaticProperties="false">
37
<testsuites>
4-
<testsuite name="CodebarAg Test Suite">
8+
<testsuite name="codebar Solutions AG Test Suite">
59
<directory>tests</directory>
610
</testsuite>
711
</testsuites>
@@ -16,6 +20,7 @@
1620
<junit outputFile="build/report.junit.xml"/>
1721
</logging>
1822
<php>
23+
<env name="APP_KEY" value="base64:F+mHMDBbavrsp/I3WYA5lDSwDJJI/0wQG4eM3csq/lo="/>
1924
<env name="ZENDESK_SUBDOMAIN" value=""/>
2025
<env name="ZENDESK_EMAIL_ADDRESS" value=""/>
2126
<env name="ZENDESK_API_TOKEN" value=""/>

0 commit comments

Comments
 (0)