-
- Downloads
Make composer-git-hooks a non-dev dependency
It gets called during composer install which we need when deploying without dev packages. Disabling scripts would work, but then the symfony install commands would be skipped too...
... | @@ -4,6 +4,7 @@ | ... | @@ -4,6 +4,7 @@ |
"license": "AGPL-3.0-or-later", | "license": "AGPL-3.0-or-later", | ||
"require": { | "require": { | ||
"php": "^7.3", | "php": "^7.3", | ||
"brainmaestro/composer-git-hooks": "^2.8", | |||
"dbp/relay-core-bundle": "^0.1.10", | "dbp/relay-core-bundle": "^0.1.10", | ||
"dbp/relay-keycloak-bundle": "^0.1.1", | "dbp/relay-keycloak-bundle": "^0.1.1", | ||
"symfony/apache-pack": "^1.0", | "symfony/apache-pack": "^1.0", | ||
... | @@ -96,7 +97,6 @@ | ... | @@ -96,7 +97,6 @@ |
} | } | ||
}, | }, | ||
"require-dev": { | "require-dev": { | ||
"brainmaestro/composer-git-hooks": "^2.8", | |||
"friendsofphp/php-cs-fixer": "^3.0", | "friendsofphp/php-cs-fixer": "^3.0", | ||
"phpstan/phpstan": "^0.12.7", | "phpstan/phpstan": "^0.12.7", | ||
"phpstan/phpstan-phpunit": "^0.12.6", | "phpstan/phpstan-phpunit": "^0.12.6", | ||
... | ... |
Please sign in to comment