File tree Expand file tree Collapse file tree 1 file changed +11
-7
lines changed
symfonycorp/platformsh-meta/1.0 Expand file tree Collapse file tree 1 file changed +11
-7
lines changed Original file line number Diff line number Diff line change @@ -48,14 +48,18 @@ hooks:
48
48
49
49
(>&2 symfony-deploy)
50
50
51
+ crons :
52
+ security-check :
53
+ # Check that no security issues have been found for PHP packages deployed in production
54
+ # See https://github.com/fabpot/local-php-security-checker
55
+ spec : ' 50 23 * * *'
56
+ cmd : |
57
+ if [ "$SYMFONY_BRANCH" = "master" ]; then
58
+ croncape php-security-checker
59
+ fi
60
+
51
61
workers :
52
62
messenger :
53
- # PHP background workers usually don't require much CPU.
54
- # See https://symfony.com/doc/current/cloud/cookbooks/resources_allocation.html
55
- size : XS
56
- resources :
57
- base_memory : 64 # Keep in sync with the `memory-limit` flag value
58
- memory_ratio : 128
59
63
commands :
60
- # Don't forget to update your receiver name(s )
64
+ # Consume "async" messages (as configured in the routing section of config/packages/messenger.yaml )
61
65
start : symfony console --time-limit=3600 --memory-limit=64M messenger:consume async
You can’t perform that action at this time.
0 commit comments