Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/hosseinmirzapur/prisma

Prisma Go Client for Goravel
https://github.com/hosseinmirzapur/prisma

golang golang-package goravel laravel orm orm-library

Last synced: 12 days ago
JSON representation

Prisma Go Client for Goravel

Awesome Lists containing this project

README

        

# Prisma Client with Go

Special thanks to [Luca Steeb](https://github.com/steebchen), for developing an elegant package.

This package is dedicated to [Goravel](https://github.com/goravel/goravel) as an extend package.

## Version

| hosseinmirzapur/prisma | goravel/framework |
|-------------|-------------------|
| v1.1.x | v1.13.x |

## Install

1. Add package:

```bash
go get github.com/hosseinmirzapur/prisma
```

2. Register Service Provider:

```
// config/app.go
import "github.com/hosseinmirzapur/prisma"

"providers": []foundation.ServiceProvider{
...
&prisma.ServiceProvider{},
}
```

3. See artisan list

```bash
go run . artisan list
go run . artisan prisma:version
```

## Info on Commands

Be sure to check [Prisma Client with Go](https://github.com/steebchen/prisma-client-go), as there are more information there as well.