Have an issue with ./vendor/bref/bref

I’m trying to run serverless with AWS and got the following error:
Serverless plugin “./vendor/bref/bref” not found. Make sure it’s installed and listed in the “plugins” section of your serverless config file.

my serverlessfile,yml:

service: sqstodynamo

provider:
name: aws
region: us-east-2
runtime: provided
iamRoleStatements:
- Effect: Allow
Action:
- sqs:SendMessage
- sqs:ReceiveMessage
- sqs:DeleteMessage
- sqs:GetQueueAttributes
- logs:CreateLogGroup
- logs:CreateLogStream
- logs:PutLogEvents
Resource: {file(config.yml):AWS_SQS_ARN} - Effect: Allow Action: - dynamodb:BatchGetItem - dynamodb:GetItem - dynamodb:Query - dynamodb:Scan - dynamodb:BatchWriteItem - dynamodb:PutItem - dynamodb:UpdateItem Resource: {file(config.yml):AWS_DYNAMODB_TABLE_ARN}

plugins:
- ./vendor/bref/bref

functions:
sqstodynamo:
handler: index.php
description: ‘PHP Function used as a callback for SQS to migrate messages to DynamoDB’
layers:
- ${bref:layer.php-74}

Exclude files from deployment

package:
exclude:
- ‘tests/**’

my config file:

AWS_REGION: us-east-2
AWS_VERSION: latest
AWS_SQS_ARN:
AWS_DYNAMODB_TABLE_NAME:
AWS_DYNAMODB_TABLE_ARN:

The project:

Hey Mendelor. If oyu are looking for assistance with bref, I’d recommend asking over at the project itself on GitHub. Matthieu is usually very responsive with questions as well as the community he has around bref right now. While Bref may use the Serverless Framework to do deployments, the plugin makes some substantial changes to the underlying process so you would probably need to read the docs there and get support there to really help you out: https://bref.sh/

Okay, thank you for your help