DIsable players moving each other- Matter js

I created two players:
this.player = new Player({scene: this,x:0, y:0, texture: ‘female’,frame: ‘townsfolk_f_idle_1’});
this.player2 = new Player({scene: this,x:110, y:110, texture: ‘female’,frame: ‘townsfolk_f_idle_1’});
[Player class extends Phaser.Physics.Matter.Sprite]

And players can push each other. Can i somehow make them “passable”?
So they can go through each other instead of pushing?
Matter.js is used
Thanks in advance