-
Notifications
You must be signed in to change notification settings - Fork 3
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 #3 from acquia/ACMS-3749
ACMS-3749: Grumphp added.
- Loading branch information
Showing
5 changed files
with
76 additions
and
24 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,35 +1,38 @@ | ||
{ | ||
"name": "acquia/drs-acsf", | ||
"description": "Acquia recommended acsf drush commands.", | ||
"keywords": [ | ||
"name": "acquia/drs-acsf", | ||
"description": "Acquia recommended acsf drush commands.", | ||
"license": "GPL-2.0-or-later", | ||
"keywords": [ | ||
"acsf", | ||
"drupal" | ||
], | ||
"license": "GPL-2.0-or-later", | ||
"authors": [{ | ||
"name": "Acquia Engineering", | ||
"homepage": "https://www.acquia.com", | ||
"role": "Maintainer" | ||
"authors": [ | ||
{ | ||
"name": "Acquia Engineering", | ||
"homepage": "https://www.acquia.com", | ||
"role": "Maintainer" | ||
}, | ||
{ | ||
"name": "Chandan Singh", | ||
"email": "[email protected]", | ||
"role": "Maintainer" | ||
"name": "Chandan Singh", | ||
"email": "[email protected]", | ||
"role": "Maintainer" | ||
} | ||
], | ||
"require": { | ||
"acquia/drupal-recommended-settings": "^1.0", | ||
"drupal/acsf": "^2.47.0" | ||
}, | ||
"require-dev": { | ||
"acquia/coding-standards": "^1.0", | ||
"ergebnis/composer-normalize": "^2.30.2", | ||
"phpro/grumphp-shim": "^2.2" | ||
}, | ||
"repositories": { | ||
"drupal": { | ||
"type": "composer", | ||
"url": "https://packages.drupal.org/8" | ||
} | ||
}, | ||
"require": { | ||
"drupal/acsf":"^2.47.0", | ||
"acquia/drupal-recommended-settings": "^1.0" | ||
}, | ||
"require-dev": { | ||
"acquia/coding-standards": "^1.0" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Acquia\\DrsAcsf\\": "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
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,24 @@ | ||
parameters: | ||
git_dir: . | ||
grumphp: | ||
ascii: | ||
failed: grumphp-grumpy.txt | ||
succeeded: grumphp-happy.txt | ||
process_timeout: 60 | ||
tasks: | ||
git_commit_message: | ||
enforce_no_subject_trailing_period: false | ||
matchers: | ||
'Must begin with a JIRA issue number': '/^ACMS-[0-9]+: /' | ||
max_body_width: 0 | ||
max_subject_width: 0 | ||
yamllint: ~ | ||
composer: ~ | ||
composer_normalize: ~ | ||
phpcs: | ||
standard: ['phpcs.xml.dist'] | ||
ignore_patterns: | ||
- .github | ||
- vendor | ||
triggered_by: | ||
- php |
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,24 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<!-- https://github.com/squizlabs/PHP_CodeSniffer/wiki/Annotated-Ruleset --> | ||
<ruleset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:noNamespaceSchemaLocation="vendor/squizlabs/php_codesniffer/phpcs.xsd"> | ||
|
||
<description>PHP CodeSniffer configuration for analyzing acquia/drupal-recommended-settings project.</description> | ||
|
||
<!-- Use colors in output. --> | ||
<arg name="colors"/> | ||
<!-- Show progress. --> | ||
<arg value="p"/> | ||
<!-- Run in parallel. --> | ||
<arg name="parallel" value="10"/> | ||
|
||
<file>.</file> | ||
|
||
<exclude-pattern>.idea/</exclude-pattern> | ||
<exclude-pattern>var/</exclude-pattern> | ||
<exclude-pattern>vendor/</exclude-pattern> | ||
|
||
<rule ref="AcquiaPHP"/> | ||
|
||
</ruleset> |
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