├── .changes ├── 9.0.0.md ├── 9.0.1.md ├── 9.0.2.md ├── 9.0.3.md ├── 9.0.4.md ├── 9.0.5.md ├── 9.0.6.md ├── 9.0.7.md ├── 9.0.8.md ├── 9.1.0.md ├── 9.1.1.md ├── 9.1.2.md ├── 9.2.0.md ├── 9.3.0.md ├── 9.3.1.md ├── 9.4.0.md ├── 9.4.1.md ├── 9.5.0.md ├── 9.5.1.md ├── 9.5.2.md ├── 9.5.3.md ├── 9.5.4.md ├── 9.5.5.md ├── 9.5.6.md ├── 9.6.0.md ├── 9.6.1.md ├── 9.6.2.md ├── 9.6.3.md ├── 9.7.0.md ├── 9.7.1.md ├── header.tpl.md └── unreleased │ └── .gitkeep ├── .changie.yaml ├── .config └── captainhook │ ├── pre-commit.phpcs-fixer.json │ ├── pre-commit.phplint.json │ ├── pre-push.phpstan.json │ └── pre-push.phpunit.json ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md ├── dependabot.yml └── workflows │ ├── benchmark.yml │ ├── docker.yml │ ├── lint.yml │ └── release.yml ├── .gitignore ├── .php-cs-fixer.dist.php ├── .phplint.yml ├── .phplint.yml.dist ├── CHANGELOG.md ├── Dockerfile ├── LICENSE ├── README.md ├── action.yml ├── autoload.php ├── bin └── phplint ├── box.json ├── box.json.dist ├── captainhook.json ├── composer.json ├── docs ├── README.md ├── architecture │ ├── README.md │ ├── cache.md │ ├── configuration.md │ ├── console.md │ ├── event.md │ ├── extension.md │ ├── finder.md │ ├── helper.md │ ├── output.md │ └── process.md ├── assets │ ├── cache-uml-diagram.svg │ ├── config-uml-diagram.svg │ ├── console-output-example.png │ ├── console-uml-diagram.svg │ ├── event-uml-diagram.svg │ ├── extension-uml-diagram.svg │ ├── finder-uml-diagram.svg │ ├── helper-uml-diagram.svg │ ├── linter-uml-diagram.svg │ ├── output-uml-diagram.svg │ ├── php-cs-fixer_dry-run.png │ ├── phpstan_run.png │ ├── process-uml-diagram.svg │ ├── progress-bar-normal.png │ ├── progress-bar-verbose-max.png │ ├── progress-bar-verbose.png │ ├── progress-indicator-finished.png │ ├── progress-indicator-running.png │ ├── progress-printer-normal.png │ └── progress-printer-verbose.png ├── configuration.md ├── contributing.md ├── installation.md ├── upgrading.md └── usage │ ├── README.md │ ├── console.md │ ├── docker.md │ ├── github-actions.md │ ├── gitlab-ci.md │ ├── other-ci.md │ └── programmatically.md ├── entrypoint.sh ├── examples ├── empty_dir │ └── .gitkeep ├── no-source-to-lint.php ├── no-yaml-configuration.php └── outputFormat │ ├── DumpOutput.php │ ├── MyPhpLintConverter.php │ ├── README.md │ ├── autoload.php │ ├── bootstrap.php │ └── sarif.php ├── mkdocs.yml ├── phpbench.json ├── phplint.php ├── phpstan.neon.dist ├── phpunit.xml.dist ├── resources ├── gh-pages-hook.sh ├── graph-uml.phar └── graph-uml │ ├── build.php │ ├── callback │ ├── cache.php │ ├── closure.php │ ├── config.php │ ├── console.php │ ├── event.php │ ├── extension.php │ ├── finder.php │ ├── helper.php │ ├── linter.php │ ├── output.php │ └── process.php │ ├── datasource │ ├── cache.php │ ├── config.php │ ├── console.php │ ├── event.php │ ├── extension.php │ ├── finder.php │ ├── helper.php │ ├── linter.php │ ├── output.php │ └── process.php │ ├── filter │ ├── cache.php │ ├── config.php │ ├── console.php │ ├── event.php │ ├── extension.php │ ├── finder.php │ ├── helper.php │ ├── linter.php │ ├── output.php │ └── process.php │ └── options │ ├── cache.php │ ├── common.php │ ├── config.php │ ├── console.php │ ├── event.php │ ├── extension.php │ ├── finder.php │ ├── helper.php │ ├── linter.php │ ├── output.php │ └── process.php ├── src ├── Cache.php ├── Client.php ├── Command │ ├── ConfigureCommandTrait.php │ └── LintCommand.php ├── Configuration │ ├── AbstractOptionsResolver.php │ ├── ConsoleOptionsResolver.php │ ├── FileOptionsResolver.php │ ├── OptionDefinition.php │ ├── Options.php │ ├── OptionsFactory.php │ └── Resolver.php ├── Console │ └── Application.php ├── Event │ ├── AfterCheckingEvent.php │ ├── AfterCheckingInterface.php │ ├── AfterLintFileEvent.php │ ├── AfterLintFileInterface.php │ ├── BeforeCheckingEvent.php │ ├── BeforeCheckingInterface.php │ ├── BeforeLintFileEvent.php │ ├── BeforeLintFileInterface.php │ └── EventDispatcher.php ├── Extension │ ├── OutputFormat.php │ ├── ProgressBar.php │ ├── ProgressIndicator.php │ └── ProgressPrinter.php ├── Finder.php ├── Helper │ ├── DebugFormatterHelper.php │ └── ProcessHelper.php ├── Linter.php ├── Logger.php ├── Output │ ├── ChainOutput.php │ ├── CheckstyleOutput.php │ ├── ConsoleOutput.php │ ├── ConsoleOutputInterface.php │ ├── FormatResolver.php │ ├── JsonOutput.php │ ├── JunitOutput.php │ ├── LinterOutput.php │ ├── OutputInterface.php │ └── SarifOutput.php └── Process │ ├── LintProcess.php │ └── LintProcessItem.php ├── tests ├── Benchmark │ └── Console │ │ └── Command │ │ └── LintCommandBench.php ├── Cache │ └── CacheTest.php ├── Configuration │ ├── ConsoleConfigTest.php │ ├── YamlConfigTest.php │ ├── custom.yaml │ ├── empty.yaml │ ├── invalid_format.yaml │ ├── jobs.yaml │ ├── log-json.yaml │ ├── log-junit.yaml │ └── paths.yaml ├── EndToEnd │ ├── LintCommandTest.php │ └── Reserved@Keywords.php ├── Finder │ └── FinderTest.php ├── Output │ └── OutputTest.php ├── TestCase.php └── fixtures │ ├── php-8.1_syntax.php │ ├── php-8.2_syntax.php │ ├── syntax_error.php │ └── syntax_warning.php └── vendor-bin ├── captainhook └── composer.json ├── php-cs-fixer └── composer.json ├── php-scoper └── composer.json ├── phpbench └── composer.json ├── phpstan └── composer.json ├── phpunit └── composer.json └── sarif └── composer.json /.changes/9.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/.changes/9.0.0.md -------------------------------------------------------------------------------- /.changes/9.0.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/.changes/9.0.1.md -------------------------------------------------------------------------------- /.changes/9.0.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/.changes/9.0.2.md -------------------------------------------------------------------------------- /.changes/9.0.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/.changes/9.0.3.md -------------------------------------------------------------------------------- /.changes/9.0.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/.changes/9.0.4.md -------------------------------------------------------------------------------- /.changes/9.0.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/.changes/9.0.5.md -------------------------------------------------------------------------------- /.changes/9.0.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/.changes/9.0.6.md -------------------------------------------------------------------------------- /.changes/9.0.7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/.changes/9.0.7.md -------------------------------------------------------------------------------- /.changes/9.0.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/.changes/9.0.8.md -------------------------------------------------------------------------------- /.changes/9.1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/.changes/9.1.0.md -------------------------------------------------------------------------------- /.changes/9.1.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/.changes/9.1.1.md -------------------------------------------------------------------------------- /.changes/9.1.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/.changes/9.1.2.md -------------------------------------------------------------------------------- /.changes/9.2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/.changes/9.2.0.md -------------------------------------------------------------------------------- /.changes/9.3.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/.changes/9.3.0.md -------------------------------------------------------------------------------- /.changes/9.3.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/.changes/9.3.1.md -------------------------------------------------------------------------------- /.changes/9.4.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/.changes/9.4.0.md -------------------------------------------------------------------------------- /.changes/9.4.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/.changes/9.4.1.md -------------------------------------------------------------------------------- /.changes/9.5.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/.changes/9.5.0.md -------------------------------------------------------------------------------- /.changes/9.5.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/.changes/9.5.1.md -------------------------------------------------------------------------------- /.changes/9.5.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/.changes/9.5.2.md -------------------------------------------------------------------------------- /.changes/9.5.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/.changes/9.5.3.md -------------------------------------------------------------------------------- /.changes/9.5.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/.changes/9.5.4.md -------------------------------------------------------------------------------- /.changes/9.5.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/.changes/9.5.5.md -------------------------------------------------------------------------------- /.changes/9.5.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/.changes/9.5.6.md -------------------------------------------------------------------------------- /.changes/9.6.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/.changes/9.6.0.md -------------------------------------------------------------------------------- /.changes/9.6.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/.changes/9.6.1.md -------------------------------------------------------------------------------- /.changes/9.6.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/.changes/9.6.2.md -------------------------------------------------------------------------------- /.changes/9.6.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/.changes/9.6.3.md -------------------------------------------------------------------------------- /.changes/9.7.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/.changes/9.7.0.md -------------------------------------------------------------------------------- /.changes/9.7.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/.changes/9.7.1.md -------------------------------------------------------------------------------- /.changes/header.tpl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/.changes/header.tpl.md -------------------------------------------------------------------------------- /.changes/unreleased/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.changie.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/.changie.yaml -------------------------------------------------------------------------------- /.config/captainhook/pre-commit.phpcs-fixer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/.config/captainhook/pre-commit.phpcs-fixer.json -------------------------------------------------------------------------------- /.config/captainhook/pre-commit.phplint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/.config/captainhook/pre-commit.phplint.json -------------------------------------------------------------------------------- /.config/captainhook/pre-push.phpstan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/.config/captainhook/pre-push.phpstan.json -------------------------------------------------------------------------------- /.config/captainhook/pre-push.phpunit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/.config/captainhook/pre-push.phpunit.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | vendor-bin/**/composer.lock binary -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [overtrue] 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/benchmark.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/.github/workflows/benchmark.yml -------------------------------------------------------------------------------- /.github/workflows/docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/.github/workflows/docker.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/.gitignore -------------------------------------------------------------------------------- /.php-cs-fixer.dist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/.php-cs-fixer.dist.php -------------------------------------------------------------------------------- /.phplint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/.phplint.yml -------------------------------------------------------------------------------- /.phplint.yml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/.phplint.yml.dist -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/action.yml -------------------------------------------------------------------------------- /autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/autoload.php -------------------------------------------------------------------------------- /bin/phplint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/bin/phplint -------------------------------------------------------------------------------- /box.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/box.json -------------------------------------------------------------------------------- /box.json.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/box.json.dist -------------------------------------------------------------------------------- /captainhook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/captainhook.json -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/composer.json -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/architecture/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/docs/architecture/README.md -------------------------------------------------------------------------------- /docs/architecture/cache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/docs/architecture/cache.md -------------------------------------------------------------------------------- /docs/architecture/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/docs/architecture/configuration.md -------------------------------------------------------------------------------- /docs/architecture/console.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/docs/architecture/console.md -------------------------------------------------------------------------------- /docs/architecture/event.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/docs/architecture/event.md -------------------------------------------------------------------------------- /docs/architecture/extension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/docs/architecture/extension.md -------------------------------------------------------------------------------- /docs/architecture/finder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/docs/architecture/finder.md -------------------------------------------------------------------------------- /docs/architecture/helper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/docs/architecture/helper.md -------------------------------------------------------------------------------- /docs/architecture/output.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/docs/architecture/output.md -------------------------------------------------------------------------------- /docs/architecture/process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/docs/architecture/process.md -------------------------------------------------------------------------------- /docs/assets/cache-uml-diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/docs/assets/cache-uml-diagram.svg -------------------------------------------------------------------------------- /docs/assets/config-uml-diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/docs/assets/config-uml-diagram.svg -------------------------------------------------------------------------------- /docs/assets/console-output-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/docs/assets/console-output-example.png -------------------------------------------------------------------------------- /docs/assets/console-uml-diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/docs/assets/console-uml-diagram.svg -------------------------------------------------------------------------------- /docs/assets/event-uml-diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/docs/assets/event-uml-diagram.svg -------------------------------------------------------------------------------- /docs/assets/extension-uml-diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/docs/assets/extension-uml-diagram.svg -------------------------------------------------------------------------------- /docs/assets/finder-uml-diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/docs/assets/finder-uml-diagram.svg -------------------------------------------------------------------------------- /docs/assets/helper-uml-diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/docs/assets/helper-uml-diagram.svg -------------------------------------------------------------------------------- /docs/assets/linter-uml-diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/docs/assets/linter-uml-diagram.svg -------------------------------------------------------------------------------- /docs/assets/output-uml-diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/docs/assets/output-uml-diagram.svg -------------------------------------------------------------------------------- /docs/assets/php-cs-fixer_dry-run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/docs/assets/php-cs-fixer_dry-run.png -------------------------------------------------------------------------------- /docs/assets/phpstan_run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/docs/assets/phpstan_run.png -------------------------------------------------------------------------------- /docs/assets/process-uml-diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/docs/assets/process-uml-diagram.svg -------------------------------------------------------------------------------- /docs/assets/progress-bar-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/docs/assets/progress-bar-normal.png -------------------------------------------------------------------------------- /docs/assets/progress-bar-verbose-max.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/docs/assets/progress-bar-verbose-max.png -------------------------------------------------------------------------------- /docs/assets/progress-bar-verbose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/docs/assets/progress-bar-verbose.png -------------------------------------------------------------------------------- /docs/assets/progress-indicator-finished.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/docs/assets/progress-indicator-finished.png -------------------------------------------------------------------------------- /docs/assets/progress-indicator-running.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/docs/assets/progress-indicator-running.png -------------------------------------------------------------------------------- /docs/assets/progress-printer-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/docs/assets/progress-printer-normal.png -------------------------------------------------------------------------------- /docs/assets/progress-printer-verbose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/docs/assets/progress-printer-verbose.png -------------------------------------------------------------------------------- /docs/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/docs/configuration.md -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/docs/contributing.md -------------------------------------------------------------------------------- /docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/docs/installation.md -------------------------------------------------------------------------------- /docs/upgrading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/docs/upgrading.md -------------------------------------------------------------------------------- /docs/usage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/docs/usage/README.md -------------------------------------------------------------------------------- /docs/usage/console.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/docs/usage/console.md -------------------------------------------------------------------------------- /docs/usage/docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/docs/usage/docker.md -------------------------------------------------------------------------------- /docs/usage/github-actions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/docs/usage/github-actions.md -------------------------------------------------------------------------------- /docs/usage/gitlab-ci.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/docs/usage/gitlab-ci.md -------------------------------------------------------------------------------- /docs/usage/other-ci.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/docs/usage/other-ci.md -------------------------------------------------------------------------------- /docs/usage/programmatically.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/docs/usage/programmatically.md -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /examples/empty_dir/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/no-source-to-lint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/examples/no-source-to-lint.php -------------------------------------------------------------------------------- /examples/no-yaml-configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/examples/no-yaml-configuration.php -------------------------------------------------------------------------------- /examples/outputFormat/DumpOutput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/examples/outputFormat/DumpOutput.php -------------------------------------------------------------------------------- /examples/outputFormat/MyPhpLintConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/examples/outputFormat/MyPhpLintConverter.php -------------------------------------------------------------------------------- /examples/outputFormat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/examples/outputFormat/README.md -------------------------------------------------------------------------------- /examples/outputFormat/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/examples/outputFormat/autoload.php -------------------------------------------------------------------------------- /examples/outputFormat/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/examples/outputFormat/bootstrap.php -------------------------------------------------------------------------------- /examples/outputFormat/sarif.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/examples/outputFormat/sarif.php -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /phpbench.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/phpbench.json -------------------------------------------------------------------------------- /phplint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/phplint.php -------------------------------------------------------------------------------- /phpstan.neon.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/phpstan.neon.dist -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /resources/gh-pages-hook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/resources/gh-pages-hook.sh -------------------------------------------------------------------------------- /resources/graph-uml.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/resources/graph-uml.phar -------------------------------------------------------------------------------- /resources/graph-uml/build.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/resources/graph-uml/build.php -------------------------------------------------------------------------------- /resources/graph-uml/callback/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/resources/graph-uml/callback/cache.php -------------------------------------------------------------------------------- /resources/graph-uml/callback/closure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/resources/graph-uml/callback/closure.php -------------------------------------------------------------------------------- /resources/graph-uml/callback/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/resources/graph-uml/callback/config.php -------------------------------------------------------------------------------- /resources/graph-uml/callback/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/resources/graph-uml/callback/console.php -------------------------------------------------------------------------------- /resources/graph-uml/callback/event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/resources/graph-uml/callback/event.php -------------------------------------------------------------------------------- /resources/graph-uml/callback/extension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/resources/graph-uml/callback/extension.php -------------------------------------------------------------------------------- /resources/graph-uml/callback/finder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/resources/graph-uml/callback/finder.php -------------------------------------------------------------------------------- /resources/graph-uml/callback/helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/resources/graph-uml/callback/helper.php -------------------------------------------------------------------------------- /resources/graph-uml/callback/linter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/resources/graph-uml/callback/linter.php -------------------------------------------------------------------------------- /resources/graph-uml/callback/output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/resources/graph-uml/callback/output.php -------------------------------------------------------------------------------- /resources/graph-uml/callback/process.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/resources/graph-uml/callback/process.php -------------------------------------------------------------------------------- /resources/graph-uml/datasource/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/resources/graph-uml/datasource/cache.php -------------------------------------------------------------------------------- /resources/graph-uml/datasource/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/resources/graph-uml/datasource/config.php -------------------------------------------------------------------------------- /resources/graph-uml/datasource/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/resources/graph-uml/datasource/console.php -------------------------------------------------------------------------------- /resources/graph-uml/datasource/event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/resources/graph-uml/datasource/event.php -------------------------------------------------------------------------------- /resources/graph-uml/datasource/extension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/resources/graph-uml/datasource/extension.php -------------------------------------------------------------------------------- /resources/graph-uml/datasource/finder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/resources/graph-uml/datasource/finder.php -------------------------------------------------------------------------------- /resources/graph-uml/datasource/helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/resources/graph-uml/datasource/helper.php -------------------------------------------------------------------------------- /resources/graph-uml/datasource/linter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/resources/graph-uml/datasource/linter.php -------------------------------------------------------------------------------- /resources/graph-uml/datasource/output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/resources/graph-uml/datasource/output.php -------------------------------------------------------------------------------- /resources/graph-uml/datasource/process.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/resources/graph-uml/datasource/process.php -------------------------------------------------------------------------------- /resources/graph-uml/filter/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/resources/graph-uml/filter/cache.php -------------------------------------------------------------------------------- /resources/graph-uml/filter/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/resources/graph-uml/filter/config.php -------------------------------------------------------------------------------- /resources/graph-uml/filter/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/resources/graph-uml/filter/console.php -------------------------------------------------------------------------------- /resources/graph-uml/filter/event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/resources/graph-uml/filter/event.php -------------------------------------------------------------------------------- /resources/graph-uml/filter/extension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/resources/graph-uml/filter/extension.php -------------------------------------------------------------------------------- /resources/graph-uml/filter/finder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/resources/graph-uml/filter/finder.php -------------------------------------------------------------------------------- /resources/graph-uml/filter/helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/resources/graph-uml/filter/helper.php -------------------------------------------------------------------------------- /resources/graph-uml/filter/linter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/resources/graph-uml/filter/linter.php -------------------------------------------------------------------------------- /resources/graph-uml/filter/output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/resources/graph-uml/filter/output.php -------------------------------------------------------------------------------- /resources/graph-uml/filter/process.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/resources/graph-uml/filter/process.php -------------------------------------------------------------------------------- /resources/graph-uml/options/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/resources/graph-uml/options/cache.php -------------------------------------------------------------------------------- /resources/graph-uml/options/common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/resources/graph-uml/options/common.php -------------------------------------------------------------------------------- /resources/graph-uml/options/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/resources/graph-uml/options/config.php -------------------------------------------------------------------------------- /resources/graph-uml/options/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/resources/graph-uml/options/console.php -------------------------------------------------------------------------------- /resources/graph-uml/options/event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/resources/graph-uml/options/event.php -------------------------------------------------------------------------------- /resources/graph-uml/options/extension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/resources/graph-uml/options/extension.php -------------------------------------------------------------------------------- /resources/graph-uml/options/finder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/resources/graph-uml/options/finder.php -------------------------------------------------------------------------------- /resources/graph-uml/options/helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/resources/graph-uml/options/helper.php -------------------------------------------------------------------------------- /resources/graph-uml/options/linter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/resources/graph-uml/options/linter.php -------------------------------------------------------------------------------- /resources/graph-uml/options/output.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/resources/graph-uml/options/output.php -------------------------------------------------------------------------------- /resources/graph-uml/options/process.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/resources/graph-uml/options/process.php -------------------------------------------------------------------------------- /src/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/src/Cache.php -------------------------------------------------------------------------------- /src/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/src/Client.php -------------------------------------------------------------------------------- /src/Command/ConfigureCommandTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/src/Command/ConfigureCommandTrait.php -------------------------------------------------------------------------------- /src/Command/LintCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/src/Command/LintCommand.php -------------------------------------------------------------------------------- /src/Configuration/AbstractOptionsResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/src/Configuration/AbstractOptionsResolver.php -------------------------------------------------------------------------------- /src/Configuration/ConsoleOptionsResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/src/Configuration/ConsoleOptionsResolver.php -------------------------------------------------------------------------------- /src/Configuration/FileOptionsResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/src/Configuration/FileOptionsResolver.php -------------------------------------------------------------------------------- /src/Configuration/OptionDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/src/Configuration/OptionDefinition.php -------------------------------------------------------------------------------- /src/Configuration/Options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/src/Configuration/Options.php -------------------------------------------------------------------------------- /src/Configuration/OptionsFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/src/Configuration/OptionsFactory.php -------------------------------------------------------------------------------- /src/Configuration/Resolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/src/Configuration/Resolver.php -------------------------------------------------------------------------------- /src/Console/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/src/Console/Application.php -------------------------------------------------------------------------------- /src/Event/AfterCheckingEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/src/Event/AfterCheckingEvent.php -------------------------------------------------------------------------------- /src/Event/AfterCheckingInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/src/Event/AfterCheckingInterface.php -------------------------------------------------------------------------------- /src/Event/AfterLintFileEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/src/Event/AfterLintFileEvent.php -------------------------------------------------------------------------------- /src/Event/AfterLintFileInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/src/Event/AfterLintFileInterface.php -------------------------------------------------------------------------------- /src/Event/BeforeCheckingEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/src/Event/BeforeCheckingEvent.php -------------------------------------------------------------------------------- /src/Event/BeforeCheckingInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/src/Event/BeforeCheckingInterface.php -------------------------------------------------------------------------------- /src/Event/BeforeLintFileEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/src/Event/BeforeLintFileEvent.php -------------------------------------------------------------------------------- /src/Event/BeforeLintFileInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/src/Event/BeforeLintFileInterface.php -------------------------------------------------------------------------------- /src/Event/EventDispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/src/Event/EventDispatcher.php -------------------------------------------------------------------------------- /src/Extension/OutputFormat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/src/Extension/OutputFormat.php -------------------------------------------------------------------------------- /src/Extension/ProgressBar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/src/Extension/ProgressBar.php -------------------------------------------------------------------------------- /src/Extension/ProgressIndicator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/src/Extension/ProgressIndicator.php -------------------------------------------------------------------------------- /src/Extension/ProgressPrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/src/Extension/ProgressPrinter.php -------------------------------------------------------------------------------- /src/Finder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/src/Finder.php -------------------------------------------------------------------------------- /src/Helper/DebugFormatterHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/src/Helper/DebugFormatterHelper.php -------------------------------------------------------------------------------- /src/Helper/ProcessHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/src/Helper/ProcessHelper.php -------------------------------------------------------------------------------- /src/Linter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/src/Linter.php -------------------------------------------------------------------------------- /src/Logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/src/Logger.php -------------------------------------------------------------------------------- /src/Output/ChainOutput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/src/Output/ChainOutput.php -------------------------------------------------------------------------------- /src/Output/CheckstyleOutput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/src/Output/CheckstyleOutput.php -------------------------------------------------------------------------------- /src/Output/ConsoleOutput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/src/Output/ConsoleOutput.php -------------------------------------------------------------------------------- /src/Output/ConsoleOutputInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/src/Output/ConsoleOutputInterface.php -------------------------------------------------------------------------------- /src/Output/FormatResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/src/Output/FormatResolver.php -------------------------------------------------------------------------------- /src/Output/JsonOutput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/src/Output/JsonOutput.php -------------------------------------------------------------------------------- /src/Output/JunitOutput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/src/Output/JunitOutput.php -------------------------------------------------------------------------------- /src/Output/LinterOutput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/src/Output/LinterOutput.php -------------------------------------------------------------------------------- /src/Output/OutputInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/src/Output/OutputInterface.php -------------------------------------------------------------------------------- /src/Output/SarifOutput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/src/Output/SarifOutput.php -------------------------------------------------------------------------------- /src/Process/LintProcess.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/src/Process/LintProcess.php -------------------------------------------------------------------------------- /src/Process/LintProcessItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/src/Process/LintProcessItem.php -------------------------------------------------------------------------------- /tests/Benchmark/Console/Command/LintCommandBench.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/tests/Benchmark/Console/Command/LintCommandBench.php -------------------------------------------------------------------------------- /tests/Cache/CacheTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/tests/Cache/CacheTest.php -------------------------------------------------------------------------------- /tests/Configuration/ConsoleConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/tests/Configuration/ConsoleConfigTest.php -------------------------------------------------------------------------------- /tests/Configuration/YamlConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/tests/Configuration/YamlConfigTest.php -------------------------------------------------------------------------------- /tests/Configuration/custom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/tests/Configuration/custom.yaml -------------------------------------------------------------------------------- /tests/Configuration/empty.yaml: -------------------------------------------------------------------------------- 1 | # PHPLint configuration file 2 | -------------------------------------------------------------------------------- /tests/Configuration/invalid_format.yaml: -------------------------------------------------------------------------------- 1 | jobs: 2 | -------------------------------------------------------------------------------- /tests/Configuration/jobs.yaml: -------------------------------------------------------------------------------- 1 | jobs: 10 2 | -------------------------------------------------------------------------------- /tests/Configuration/log-json.yaml: -------------------------------------------------------------------------------- 1 | output: php://stdout 2 | format: 3 | - json 4 | -------------------------------------------------------------------------------- /tests/Configuration/log-junit.yaml: -------------------------------------------------------------------------------- 1 | output: /tmp/phplint-results.xml 2 | format: 3 | - junit 4 | -------------------------------------------------------------------------------- /tests/Configuration/paths.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/tests/Configuration/paths.yaml -------------------------------------------------------------------------------- /tests/EndToEnd/LintCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/tests/EndToEnd/LintCommandTest.php -------------------------------------------------------------------------------- /tests/EndToEnd/Reserved@Keywords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/tests/EndToEnd/Reserved@Keywords.php -------------------------------------------------------------------------------- /tests/Finder/FinderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/tests/Finder/FinderTest.php -------------------------------------------------------------------------------- /tests/Output/OutputTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/tests/Output/OutputTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/fixtures/php-8.1_syntax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/tests/fixtures/php-8.1_syntax.php -------------------------------------------------------------------------------- /tests/fixtures/php-8.2_syntax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overtrue/phplint/HEAD/tests/fixtures/php-8.2_syntax.php -------------------------------------------------------------------------------- /tests/fixtures/syntax_error.php: -------------------------------------------------------------------------------- 1 |