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: 3 months ago
JSON representation
Prisma Go Client for Goravel
- Host: GitHub
- URL: https://github.com/hosseinmirzapur/prisma
- Owner: hosseinmirzapur
- Created: 2024-01-05T14:23:34.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-22T14:32:24.000Z (about 2 years ago)
- Last Synced: 2025-05-19T19:53:53.180Z (about 1 year ago)
- Topics: golang, golang-package, goravel, laravel, orm, orm-library
- Language: Go
- Homepage: https://goravel.dev
- Size: 49.8 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
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.