-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat!: modernize the project for composer 2, PHP 8, Drupal 10 among o…
…thers (#7) * chore!: update some dependencies for composer-plugin-api compatibility. * chore: update gitignore to ignore .idea directory. * fix: update composer plugin for new API changes. * fix: update use of OperationInterface API. * fix!: update gumphp template. * fix: remove hooks_preset grumphp config. * chore!: bump phpunit dependency to allow for php 8 install. * chore: remove sensiolabs/security-checker * chore: update phpro/grumphp and dependencies * chore!: update version of Drupal core for testing * chore!: update version of Drupal core for testing * fix: replace abandoned php-parallel-lint * fix: update phpunit ref to 9.5 * chore: swap grumphp for grumphp-shim * chore!: leave old dependencies in the dust * feat: add security-checker * feat: additional checks for commit messages * feat: add securitychecker_enlightn to config * fix: ascii art for grumphp phar * fix: coding standards in the plugin class * fix: update grumphp yml template * fix: update phpunit config for Drupal 10 * fix: bump php version in travis template
- Loading branch information
Showing
9 changed files
with
141 additions
and
68 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
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,48 +1,55 @@ | ||
{ | ||
"name": "e0ipso/travis-drupal-module", | ||
"type": "composer-plugin", | ||
"description": "Library to help Travis CI setup without headaches for Drupal modules.", | ||
"license": "GPL-2.0", | ||
"type": "composer-plugin", | ||
"keywords": [ | ||
"Drupal", | ||
"Travis" | ||
], | ||
"homepage": "https://github.com/e0ipso/travis-drupal-module", | ||
"license": "GPL-2.0", | ||
"authors": [ | ||
{ | ||
"name": "Mateu Aguiló Bosch", | ||
"email": "mateu@mateuaguilo.com" | ||
} | ||
], | ||
"homepage": "https://github.com/e0ipso/travis-drupal-module", | ||
"support": { | ||
"issues": "https://github.com/e0ipso/travis-drupal-module/issues", | ||
"source": "https://github.com/e0ipso/travis-drupal-module" | ||
}, | ||
"require": { | ||
"php": ">=7.3", | ||
"composer-plugin-api": "^1.1", | ||
"dealerdirect/phpcodesniffer-composer-installer": "^0.5.0", | ||
"php": ">=8.1", | ||
"composer-plugin-api": "^2.0", | ||
"dealerdirect/phpcodesniffer-composer-installer": "^1.0", | ||
"drupal/coder": "^8.2", | ||
"jakub-onderka/php-parallel-lint": "^1.0", | ||
"localheinz/composer-normalize": "^1.3", | ||
"enlightn/security-checker": "^1.10", | ||
"localheinz/composer-normalize": "^2.4", | ||
"nikic/php-parser": "^4.2", | ||
"php-parallel-lint/php-parallel-lint": "^1.0", | ||
"phpmd/phpmd": "^2", | ||
"phpmetrics/phpmetrics": "^2.4", | ||
"phpro/grumphp": "^0.15.2", | ||
"phpunit/phpunit": "^6.5", | ||
"sensiolabs/security-checker": "^6.0", | ||
"phpro/grumphp-shim": "^1.15", | ||
"phpunit/phpunit": "^8.5.14 || ^9", | ||
"squizlabs/php_codesniffer": "^3.4", | ||
"symfony/filesystem": "~2.8 || ~3.0 || ~4.0" | ||
"symfony/filesystem": "^6.2" | ||
}, | ||
"require-dev": {}, | ||
"extra": { | ||
"class": [ | ||
"TravisDrupalModule\\Composer\\TravisDrupalModulePlugin" | ||
] | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"TravisDrupalModule\\": "src" | ||
} | ||
}, | ||
"support": { | ||
"issues": "https://github.com/e0ipso/travis-drupal-module/issues", | ||
"source": "https://github.com/e0ipso/travis-drupal-module" | ||
"config": { | ||
"allow-plugins": { | ||
"dealerdirect/phpcodesniffer-composer-installer": true, | ||
"localheinz/composer-normalize": true, | ||
"phpro/grumphp-shim": true | ||
} | ||
}, | ||
"extra": { | ||
"class": [ | ||
"TravisDrupalModule\\Composer\\TravisDrupalModulePlugin" | ||
] | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
dist: xenial | ||
language: php | ||
php: 7.3 | ||
php: 8.1 | ||
cache: | ||
directories: | ||
- "$HOME/.composer/cache/files" | ||
|
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