Browse Source
fix: Let git ignore composer dev dependencies
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
pull/42065/head
Ferdinand Thiessen
2 years ago
No known key found for this signature in database
GPG Key ID: 45FAE7268762B400
2 changed files with
4 additions and
2 deletions
-
.gitignore
-
composer.json
|
|
|
@ -162,6 +162,7 @@ tests/acceptance/vendor/ |
|
|
|
|
|
|
|
composer.phar |
|
|
|
/lib/composer/bin |
|
|
|
/lib/composer/bamarni |
|
|
|
/vendor-bin/**/vendor |
|
|
|
|
|
|
|
./.htaccess |
|
|
|
|
|
|
|
@ -11,6 +11,7 @@ |
|
|
|
} |
|
|
|
}, |
|
|
|
"autoload": { |
|
|
|
"exclude-from-classmap": ["**/bamarni/composer-bin-plugin/**"], |
|
|
|
"files": [ |
|
|
|
"lib/public/Log/functions.php" |
|
|
|
], |
|
|
|
@ -48,11 +49,11 @@ |
|
|
|
"scripts": { |
|
|
|
"post-install-cmd": [ |
|
|
|
"[ $COMPOSER_DEV_MODE -eq 0 ] || composer bin all install", |
|
|
|
"composer dump-autoload" |
|
|
|
"composer dump-autoload --no-dev" |
|
|
|
], |
|
|
|
"post-update-cmd": [ |
|
|
|
"[ $COMPOSER_DEV_MODE -eq 0 ] || composer bin all update --ansi", |
|
|
|
"composer dump-autoload" |
|
|
|
"composer dump-autoload --no-dev" |
|
|
|
], |
|
|
|
"cs:fix": "php-cs-fixer fix", |
|
|
|
"cs:check": "php-cs-fixer fix --dry-run --diff", |
|
|
|
|