Skip to content

Commit

Permalink
Upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
vkhramtsov committed Jan 5, 2021
1 parent fa33b0d commit 6c3a2e8
Show file tree
Hide file tree
Showing 4 changed files with 349 additions and 360 deletions.
13 changes: 11 additions & 2 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,15 @@
</exec>
</target>

<target name="php-cs-fixer-ci" description="Fixes most issues in code as defined in the PSR-* documents">
<exec executable="${php-bin}" logoutput="true" checkreturn="true">
<arg path="${php-cs-fixer-bin}" />
<arg value="fix"/>
<arg value="--dry-run"/>
<arg value="--diff"/>
</exec>
</target>

<target name="symfony-regenerate-cache-dev" description="Regenerate symfony cache in dev mode">
<SymfonyConsole command="cache:clear" checkReturn="true" console="${symfony-bin-console}">
<arg name="env" value="dev" />
Expand Down Expand Up @@ -413,13 +422,13 @@
package-version,package-archive" />

<target name="build" description="Runs build locally" depends="clean,prepare,check-environment,projectdoc,
composer-validate,phplint, psalm, symfony-twig-lint,symfony-yaml-lint,symfony-doctrine-schema-validate,phpmd,php-cs-fixer,phpcs,
composer-validate,phplint, psalm, symfony-twig-lint, symfony-yaml-lint, symfony-doctrine-schema-validate, phpmd, php-cs-fixer, phpcs,
phpcpd,symfony-regenerate-cache-dev,symfony-regenerate-cache-prod,symfony-assets-install-dev,encore-build-assets-dev,
symfony-assets-install-prod,encore-build-assets-prod,dependencies-list-updates,dependencies-security-check, dependencies-list-outdated" />

<target name="build-ci" description="Runs CI build" depends="copy-configs-ci,dependencies-install,clean,prepare,check-environment,
projectdoc,composer-validate,phplint, psalm, symfony-twig-lint,symfony-yaml-lint,symfony-doctrine-schema-validate,phpmd,
phpcs,phpcpd,symfony-regenerate-cache-dev,symfony-regenerate-cache-prod,symfony-assets-install-dev,encore-build-assets-dev,
php-cs-fixer-ci, phpcs,phpcpd,symfony-regenerate-cache-dev,symfony-regenerate-cache-prod,symfony-assets-install-dev,encore-build-assets-dev,
symfony-assets-install-prod,encore-build-assets-prod,dependencies-list-updates,dependencies-security-check, dependencies-list-outdated" />

</project>
Loading

0 comments on commit 6c3a2e8

Please sign in to comment.