-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #94 from drupalauth/v2-dev
- Loading branch information
Showing
26 changed files
with
283 additions
and
220 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Editor configuration normalization | ||
# @see http://editorconfig.org/ | ||
|
||
# This is the top-most .editorconfig file; do not search in parent directories. | ||
root = true | ||
|
||
# All files. | ||
[*] | ||
end_of_line = LF | ||
indent_style = space | ||
indent_size = 4 | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
|
||
[{*.yml,*yaml}] | ||
indent_size = 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
composer.phar | ||
/vendor/ | ||
composer.lock | ||
.bash_history | ||
/.phpunit.result.cache |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Lando specific - uses user home directory to store Composer cache and other stuff | ||
# Helps to re-use Composer cache between projects. | ||
COMPOSER_HOME=/user/.composer | ||
# https://xdebug.org/docs/step_debug | ||
# https://xdebug.org/docs/step_debug#client_host | ||
# https://docs.lando.dev/config/php.html#configuration | ||
PHP_IDE_CONFIG=serverName=drupalauth.lndo.site | ||
# Ignore commands starting with space and duplicates. | ||
HISTCONTROL=ignoreboth | ||
HOME=/app |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
name: drupalauth | ||
|
||
services: | ||
php80: | ||
type: php:8.0 | ||
via: cli | ||
xdebug: "off" | ||
composer_version: 2 | ||
php81: | ||
type: php:8.1 | ||
via: cli | ||
xdebug: "off" | ||
composer_version: 2 | ||
php82: | ||
type: php:8.2 | ||
via: cli | ||
xdebug: "off" | ||
composer_version: 2 | ||
|
||
|
||
|
||
|
||
env_file: | ||
- .lando.env | ||
|
||
tooling: | ||
style-lint: | ||
cmd: ./scripts/style-lint.sh | ||
service: :service | ||
options: | ||
service: | ||
default: php80 | ||
describe: Run phpcs in different service | ||
alias: | ||
- s | ||
style-fix: | ||
cmd: ./scripts/style-fix.sh | ||
service: :service | ||
options: | ||
service: | ||
default: php80 | ||
describe: Run phpcs in different service | ||
alias: | ||
- s | ||
phpunit: | ||
cmd: ./scripts/phpunit.sh | ||
service: :service | ||
options: | ||
service: | ||
default: php80 | ||
describe: Run phpunit in different service | ||
alias: | ||
- s |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/usr/bin/env bash | ||
|
||
php -v | ||
rm -rf ./vendor composer.lock | ||
composer install | ||
|
||
./vendor/bin/phpunit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/usr/bin/env bash | ||
|
||
rm -rf ./vendor composer.lock | ||
composer install | ||
|
||
./vendor/bin/phpcbf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/usr/bin/env bash | ||
|
||
rm -rf ./vendor composer.lock | ||
composer install | ||
|
||
./vendor/bin/phpcs | ||
|
||
#lando phpunit -s php80 | ||
#lando style-lint -s php80 | ||
#lando phpunit -s php81 | ||
#lando style-lint -s php81 | ||
#lando phpunit -s php82 | ||
#lando style-lint -s php82 |
Oops, something went wrong.