├── .github ├── dependabot.yml └── workflows │ └── docker.yml ├── 8.x └── debian │ ├── Dockerfile │ ├── tool-drupal-check.json │ └── tool-grumphp.json ├── LICENSE ├── README.md └── clean.sh /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussainweb/drupalqa/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussainweb/drupalqa/HEAD/.github/workflows/docker.yml -------------------------------------------------------------------------------- /8.x/debian/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussainweb/drupalqa/HEAD/8.x/debian/Dockerfile -------------------------------------------------------------------------------- /8.x/debian/tool-drupal-check.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussainweb/drupalqa/HEAD/8.x/debian/tool-drupal-check.json -------------------------------------------------------------------------------- /8.x/debian/tool-grumphp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussainweb/drupalqa/HEAD/8.x/debian/tool-grumphp.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussainweb/drupalqa/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussainweb/drupalqa/HEAD/README.md -------------------------------------------------------------------------------- /clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussainweb/drupalqa/HEAD/clean.sh --------------------------------------------------------------------------------