This repository has been archived by the owner on Mar 1, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added check for isDevMode in the security plugin (#144)
* feat : using isDevMode to check if security should check dev dependencies build : changed how mirror classes list is build * fix : dont run security check if package is removed after operation * style : cs fixes feat : updated .gitattributes with missed files * build : update textlint to v11.5.0 * build : added new mutation workflow fix : added security alias file to ignore in phpunit.xml * build : name change * fix : added common folder from security plugin to exclude on phpunit
- Loading branch information
Showing
111 changed files
with
3,220 additions
and
1,075 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,19 +1,25 @@ | ||
* text=auto | ||
*.php text eol=lf | ||
|
||
tests/ export-ignore | ||
build/ export-ignore | ||
.github/ export-ignore | ||
tests/ export-ignore | ||
build/ export-ignore | ||
.github/ export-ignore | ||
|
||
.mergify.yml export-ignore | ||
.php_cs export-ignore | ||
.gitattributes export-ignore | ||
.gitignore export-ignore | ||
.travis.yml export-ignore | ||
.editorconfig export-ignore | ||
codecov.yml export-ignore | ||
phpstan.neon export-ignore | ||
phpunit.xml.dist export-ignore | ||
infection.json.dist export-ignore | ||
CONTRIBUTING.md export-ignore | ||
README.md export-ignore | ||
.changelog export-ignore | ||
.editorconfig export-ignore | ||
.gitattributes export-ignore | ||
.gitignore export-ignore | ||
.mergify.yml export-ignore | ||
.nvmrc export-ignore | ||
.php_cs export-ignore | ||
.phpunit.xdebug.filter export-ignore | ||
.textlintrc export-ignore | ||
.travis.yml export-ignore | ||
appveyor.yml export-ignore | ||
CONTRIBUTING.md export-ignore | ||
infection.json.dist export-ignore | ||
package.json export-ignore | ||
package-lock.json export-ignore | ||
phpstan.neon export-ignore | ||
phpunit.xml.dist export-ignore | ||
psalm.xml export-ignore |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: 'Mutation testing' | ||
|
||
on: | ||
push: | ||
paths: | ||
- '**.php' | ||
pull_request: | ||
paths: | ||
- '**.php' | ||
|
||
jobs: | ||
php-cs-fixer: | ||
name: 'Infection' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@master | ||
- name: Setup PHP | ||
uses: shivammathur/setup-php@master | ||
with: | ||
php-version: 7.2 | ||
- run: composer install | ||
- name: 'mutation tests' | ||
run: ulimit -n 4096 && phpdbg -qrr ./vendor/bin/infection -vvv --min-msi=40 --min-covered-msi=60 |
10 changes: 8 additions & 2 deletions
10
.github/workflows/static-analyze-phpstan.yml → .github/workflows/static-analyze.yml
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 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 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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.