├── .circleci ├── config.yml ├── generate-local-config.sh └── run-local-config.sh ├── .config_local.yml ├── .editorconfig ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ └── bug_report.md ├── SECURITY.md ├── dependabot.yml └── workflows │ └── php.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── appveyor.yml ├── composer.json ├── composer.lock ├── drupal-check ├── error-bootstrap.php ├── phpcs.xml ├── phpstan.neon ├── src ├── Application.php ├── Command │ └── CheckCommand.php ├── ErrorHandler.php └── Util │ └── Tty.php └── tests └── fixtures └── contained_not_initialized ├── contained_not_initialized.info.yml ├── contained_not_initialized.install └── contained_not_initialized.module /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mglaman/drupal-check/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.circleci/generate-local-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mglaman/drupal-check/HEAD/.circleci/generate-local-config.sh -------------------------------------------------------------------------------- /.circleci/run-local-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mglaman/drupal-check/HEAD/.circleci/run-local-config.sh -------------------------------------------------------------------------------- /.config_local.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mglaman/drupal-check/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mglaman/drupal-check/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mglaman/drupal-check/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mglaman/drupal-check/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mglaman/drupal-check/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/php.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mglaman/drupal-check/HEAD/.github/workflows/php.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Composer 2 | /vendor/ 3 | /.idea 4 | .circleci/config_local.yml 5 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mglaman/drupal-check/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mglaman/drupal-check/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mglaman/drupal-check/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mglaman/drupal-check/HEAD/appveyor.yml -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mglaman/drupal-check/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mglaman/drupal-check/HEAD/composer.lock -------------------------------------------------------------------------------- /drupal-check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mglaman/drupal-check/HEAD/drupal-check -------------------------------------------------------------------------------- /error-bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mglaman/drupal-check/HEAD/error-bootstrap.php -------------------------------------------------------------------------------- /phpcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mglaman/drupal-check/HEAD/phpcs.xml -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mglaman/drupal-check/HEAD/phpstan.neon -------------------------------------------------------------------------------- /src/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mglaman/drupal-check/HEAD/src/Application.php -------------------------------------------------------------------------------- /src/Command/CheckCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mglaman/drupal-check/HEAD/src/Command/CheckCommand.php -------------------------------------------------------------------------------- /src/ErrorHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mglaman/drupal-check/HEAD/src/ErrorHandler.php -------------------------------------------------------------------------------- /src/Util/Tty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mglaman/drupal-check/HEAD/src/Util/Tty.php -------------------------------------------------------------------------------- /tests/fixtures/contained_not_initialized/contained_not_initialized.info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mglaman/drupal-check/HEAD/tests/fixtures/contained_not_initialized/contained_not_initialized.info.yml -------------------------------------------------------------------------------- /tests/fixtures/contained_not_initialized/contained_not_initialized.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mglaman/drupal-check/HEAD/tests/fixtures/contained_not_initialized/contained_not_initialized.install -------------------------------------------------------------------------------- /tests/fixtures/contained_not_initialized/contained_not_initialized.module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mglaman/drupal-check/HEAD/tests/fixtures/contained_not_initialized/contained_not_initialized.module --------------------------------------------------------------------------------