-
- Downloads
Add Gitlab CI integration
by using PHP CS Fixer for linting instead of PHPCS and dropping PHPStan 2.x as requirement due to the lack of support for that before 11.2.0. drupal@22098897
Showing
- .gitignore 1 addition, 0 deletions.gitignore
- .gitlab-ci.yml 54 additions, 0 deletions.gitlab-ci.yml
- .php-cs-fixer.php 60 additions, 0 deletions.php-cs-fixer.php
- composer.json 12 additions, 3 deletionscomposer.json
- phpstan-baseline.neon 0 additions, 0 deletionsphpstan-baseline.neon
- phpstan.neon 23 additions, 0 deletionsphpstan.neon
.gitlab-ci.yml
0 → 100644
.php-cs-fixer.php
0 → 100644
... | ... | @@ -7,9 +7,18 @@ |
"php": "8.1.* || 8.2.* || 8.3.*", | ||
"drupal/core": "^10.3.2 || ^11.0.0" | ||
}, | ||
"config": { | ||
"sort-packages": true, | ||
"allow-plugins": { | ||
"phpstan/extension-installer": true | ||
} | ||
}, | ||
"require-dev": { | ||
"mglaman/phpstan-drupal": "^2.0.0", | ||
"phpstan/phpstan": "^2.1.0", | ||
"phpstan/phpstan-deprecation-rules": "^2.0.1" | ||
"drupol/phpcsfixer-configs-drupal": "^2.2", | ||
"ergebnis/license": "^2.6", | ||
"mglaman/phpstan-drupal": "^1.3.3", | ||
"phpstan/extension-installer": "^1.4", | ||
"phpstan/phpstan": "^1.12.19", | ||
"phpstan/phpstan-deprecation-rules": "^1.2.1" | ||
} | ||
} |
phpstan-baseline.neon
0 → 100644
phpstan.neon
0 → 100644
Please register or sign in to comment