Skip to content

Commit e2c0ae1

Browse files
committed
rename Tests -> tests
1 parent 9e3e42e commit e2c0ae1

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ jobs:
205205
run: |
206206
XDEBUG_MODE=coverage php vendor/bin/phpunit \
207207
--bootstrap vendor/oxid-esales/testing-library/bootstrap.php \
208-
-c /build/oxid/vendor/oxid-solution-catalysts/paypal-module/Tests/phpunit.xml \
208+
-c /build/oxid/vendor/oxid-solution-catalysts/paypal-module/tests/phpunit.xml \
209209
--coverage-clover=/build/oxid/logs/clover.xml \
210210
--coverage-text \
211211
--log-junit /build/oxid/logs/phpunit.xml

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ php-cs-fixer.phar
55
/var/
66
/vendor/
77
/composer.lock
8-
/Tests/Codeception/_output/
8+
/tests/Codeception/_output/
99
/resources/node_modules/
1010
.env

composer.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"target-directory": "osc/paypal",
1717
"blacklist-filter": [
1818
"resources/**/*",
19-
"Tests/**/*"
19+
"tests/**/*"
2020
]
2121
}
2222
},
@@ -48,16 +48,16 @@
4848
"autoload": {
4949
"psr-4": {
5050
"OxidSolutionCatalysts\\PayPal\\": "src",
51-
"OxidSolutionCatalysts\\PayPal\\Tests\\": "Tests"
51+
"OxidSolutionCatalysts\\PayPal\\Tests\\": "tests"
5252
}
5353
},
5454
"scripts": {
5555
"psalm": "psalm --show-info=true --no-cache --php-version=7.1",
5656
"psalm-report": "psalm --show-info=true --no-cache --report=logs/psalm.sonarqube.json --php-version=7.1",
5757
"psalm-errors": "psalm --no-cache --php-version=7.1",
5858
"psalm-automatic": "psalm --alter --issues=MissingReturnType,MissingParamType --php-version=7.1",
59-
"phpcs": "phpcs --standard=Tests/phpcs.xml",
60-
"phpcbf": "phpcbf --standard=Tests/phpcs.xml"
59+
"phpcs": "phpcs --standard=tests/phpcs.xml",
60+
"phpcbf": "phpcbf --standard=tests/phpcs.xml"
6161
},
6262
"config": {
6363
"allow-plugins": {

psalm.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@
1212
</projectFiles>
1313

1414
<stubs>
15-
<file name="Tests/Psalm/Stubs.php" preloadClasses="true" />
15+
<file name="tests/Psalm/Stubs.php" preloadClasses="true" />
1616
</stubs>
1717
</psalm>

0 commit comments

Comments
 (0)