Specify a behavior's event priority (Cakephp 4)

Hello everyone! I am a bit new to cakephp and I am really struggling to configure the following correctly. I want to raise the “priority” of a behavior’s afterSave event (so that it executes last, once the afterSave of all other behaviors have executed). Reading the cookbook, I understand the default priority is 10, so I would need to raise the behavior’s afterSave priority higher than 10 (if I understood the cookbook correctly) to get the desired effect. My question is, how and (where) would I go about configuring this? Any tips would help!

There are examples here, which is also where it documents the default priority.