Skip to content

Commit 97d473d

Browse files
committed
Indent with spaces
1 parent 0f47939 commit 97d473d

File tree

2 files changed

+11
-10
lines changed

2 files changed

+11
-10
lines changed

.github/workflows/php.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,9 @@ jobs:
3636
composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction
3737
3838
- name: Execute tests
39-
run: vendor/bin/phpunit
39+
run: |
40+
vendor/bin/phpunit
4041
41-
- name: Coveralls GitHub Action
42+
- name: Coveralls GitHub Action
4243
uses: coverallsapp/[email protected]
4344

composer.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,22 +20,22 @@
2020
"autoload": {
2121
"psr-4": {"ReCaptcha\\": "src/ReCaptcha"}
2222
},
23-
"autoload-dev": {
24-
"psr-4": {"ReCaptcha\\": "tests/ReCaptcha/"}
25-
},
23+
"autoload-dev": {
24+
"psr-4": {"ReCaptcha\\": "tests/ReCaptcha/"}
25+
},
2626
"scripts": {
2727
"lint": [
2828
"@putenv PHP_CS_FIXER_IGNORE_ENV=1",
29-
"vendor/bin/php-cs-fixer -vvv fix --using-cache=no --dry-run ."
29+
"vendor/bin/php-cs-fixer -vvv fix --using-cache=no --dry-run ."
3030
],
3131
"lint-fix": [
3232
"@putenv PHP_CS_FIXER_IGNORE_ENV=1",
33-
"vendor/bin/php-cs-fixer -vvv fix --using-cache=no ."
33+
"vendor/bin/php-cs-fixer -vvv fix --using-cache=no ."
3434
],
3535
"test": [
36-
"@putenv XDEBUG_MODE=coverage",
37-
"vendor/bin/phpunit --display-phpunit-deprecations"
38-
],
36+
"@putenv XDEBUG_MODE=coverage",
37+
"vendor/bin/phpunit --display-phpunit-deprecations"
38+
],
3939
"serve-examples": "@php -S localhost:8080 -t examples"
4040
},
4141
"config": {

0 commit comments

Comments
 (0)