-
Notifications
You must be signed in to change notification settings - Fork 0
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 #5 from Phauthentic/salts
Improving salting
- Loading branch information
Showing
31 changed files
with
796 additions
and
81 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 |
---|---|---|
@@ -1,18 +1,27 @@ | ||
; This file is for unifying the coding style for different editors and IDEs. | ||
; More information at http://editorconfig.org | ||
|
||
root = true | ||
|
||
[*] | ||
indent_style = space | ||
indent_size = 4 | ||
end_of_line = lf | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
charset = utf-8 | ||
|
||
[*.bat] | ||
indent_style = space | ||
indent_size = 4 | ||
end_of_line = crlf | ||
|
||
[*.yml] | ||
indent_style = space | ||
indent_size = 2 | ||
indent_size = 4 | ||
|
||
[*.json] | ||
indent_style = space | ||
indent_size = 4 | ||
|
||
[*.yaml] | ||
indent_style = space | ||
indent_size = 4 |
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,38 +1,8 @@ | ||
# User specific & automatically generated files # | ||
################################################# | ||
/composer.lock | ||
/phpunit.xml | ||
/phpcs.xml | ||
/.idea | ||
/.phpunit.result.cache | ||
/tmp | ||
/vendor | ||
|
||
# OS generated files # | ||
###################### | ||
.DS_Store | ||
.DS_Store? | ||
._* | ||
.Spotlight-V100 | ||
.Trashes | ||
Icon? | ||
ehthumbs.db | ||
Thumbs.db | ||
|
||
# Tool specific files # | ||
####################### | ||
# vim | ||
*~ | ||
*.swp | ||
*.swo | ||
# sublime text & textmate | ||
*.sublime-* | ||
*.stTheme.cache | ||
*.tmlanguage.cache | ||
*.tmPreferences.cache | ||
# Eclipse | ||
.settings/* | ||
# JetBrains, aka PHPStorm, IntelliJ IDEA | ||
.idea/* | ||
# NetBeans | ||
nbproject/* | ||
# Visual Studio Code | ||
.vscode | ||
/logs | ||
/vendor/ | ||
/bin | ||
coverage.xml | ||
phive*.phar |
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,76 @@ | ||
filter: | ||
excluded_paths: | ||
- bin/* | ||
- vendor/* | ||
- tests/* | ||
- config/* | ||
- docs/* | ||
- public/* | ||
- tests/bootstrap.php | ||
dependency_paths: | ||
- vendor/* | ||
|
||
build_failure_conditions: | ||
- 'patches.label("Spacing").new.count > 1' # More than 1 new spacing patch | ||
|
||
- 'issues.label("coding-style").exists' # No coding style issues allowed | ||
- 'issues.label("coding-style").new.exists' # No new coding style issues allowed | ||
|
||
- 'issues.label("coding-style").new.count > 1' # More than 1 new coding style issues. | ||
- 'issues.severity(>= MAJOR).new.exists' # New issues of major or higher severity | ||
|
||
- 'project.metric("scrutinizer.quality", < 9)' # Code Quality Rating drops below 9 | ||
|
||
# Code Coverage decreased from previous inspection by more than 1% | ||
- 'project.metric_change("scrutinizer.test_coverage", < -0.1)' | ||
|
||
build: | ||
services: | ||
#mariadb: 10.1.40 | ||
environment: | ||
hosts: | ||
cake3.world-architects.com: '127.0.0.1' | ||
redis: true | ||
node: 10.16.0 | ||
php: | ||
version: '7.4' | ||
ini: | ||
phar.readonly: 'Off' | ||
#elasticsearch: '6' | ||
|
||
nodes: | ||
tests-php73: | ||
environment: | ||
php: | ||
version: '7.3' | ||
ini: | ||
phar.readonly: 'Off' | ||
tests: | ||
override: | ||
- sh ./config/ci-setup.sh | ||
- | ||
command: './bin/phpunit --coverage-clover=coverage.xml --bootstrap ./tests/bootstrap.php' | ||
coverage: | ||
file: 'coverage.xml' | ||
format: 'php-clover' | ||
|
||
tests-php74: | ||
environment: | ||
php: | ||
version: '7.4' | ||
ini: | ||
phar.readonly: 'Off' | ||
tests: | ||
override: | ||
- sh ./config/ci-setup.sh | ||
- | ||
command: './bin/phpunit --coverage-clover=coverage.xml --bootstrap ./tests/bootstrap.php' | ||
coverage: | ||
file: 'coverage.xml' | ||
format: 'php-clover' | ||
|
||
analysis: | ||
tests: | ||
override: | ||
- php-scrutinizer-run --enable-security-analysis | ||
- phpcs-run --standard=./phpcs.xml ./src |
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
Oops, something went wrong.