File tree Expand file tree Collapse file tree 5 files changed +44
-6
lines changed
Expand file tree Collapse file tree 5 files changed +44
-6
lines changed Original file line number Diff line number Diff line change 1+ root = true
2+
3+ [* ]
4+ charset = utf-8
5+ indent_size = 4
6+ indent_style = space
7+ end_of_line = lf
8+ insert_final_newline = true
9+ trim_trailing_whitespace = true
10+
11+ [* .md ]
12+ trim_trailing_whitespace = false
13+
14+ [* .{yml,yaml} ]
15+ indent_size = 2
Original file line number Diff line number Diff line change 1+ # Path-based git attributes
2+ # https://www.kernel.org/pub/software/scm/git/docs/gitattributes.html
3+
4+ # Ignore all test and documentation with "export-ignore".
5+ /.github export-ignore
6+ /.gitattributes export-ignore
7+ /.gitignore export-ignore
8+ /phpunit.xml.dist export-ignore
9+ /art export-ignore
10+ /docs export-ignore
11+ /tests export-ignore
12+ /.editorconfig export-ignore
13+ /.php_cs.dist.php export-ignore
14+ /psalm.xml export-ignore
15+ /psalm.xml.dist export-ignore
16+ /testbench.yaml export-ignore
17+ /UPGRADING.md export-ignore
18+ /phpstan.neon.dist export-ignore
19+ /phpstan-baseline.neon export-ignore
Original file line number Diff line number Diff line change 11.idea
22.phpunit.result.cache
33.phpunit.cache
4- build
54composer.lock
65coverage
76phpunit.xml
@@ -10,4 +9,4 @@ testbench.yaml
109vendor
1110node_modules
1211.phpactor.json
13-
12+ build
Original file line number Diff line number Diff line change @@ -2,11 +2,11 @@ includes:
22 - phpstan-baseline.neon
33
44parameters:
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
Original file line number Diff line number Diff line change 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.3/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 =" codebar Test Suite" >
8+ <testsuite name =" codebar Solutions AG Test Suite" >
59 <directory >tests</directory >
610 </testsuite >
711 </testsuites >
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 =" APP_ENV" value =" testing" />
2025 <env name =" INSTAGRAM_CLIENT_ID" value =" CLIENT_ID" />
2126 <env name =" INSTAGRAM_CLIENT_SECRET" value =" CLIENT_SECRET" />
You can’t perform that action at this time.
0 commit comments