Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ So you can using PGSchema to your projects safely with any database connection d

## Laravel version

Current package version works for Laravel `5+` .
Current package version works for Laravel `10` .


## Installation

1. Use composer to add the package into your project
```
composer require racklin/pgschema:dev-master
composer require jamoliddin/pgschema
```

2. Add service provider into your providers array in `config/app.php`
Expand Down
16 changes: 8 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
{
"name": "racklin/pgschema",
"description": "postgresql schemas for laravel 5",
"name": "jamoliddin/pgschema",
"description": "postgresql schemas for laravel 10",
"keywords" : ["laravel", "postgres"],
"license" : "MIT",
"authors": [
{
"name": "Rack Lin",
"email": "racklin@gmail.com"
"name": "Jamoliddin",
"email": "sh.jamoliddin2001@gmail.com"
}
],
"require": {
"php": ">=7.0.0",
"illuminate/support": "~5.5 || ^6.0",
"illuminate/console": "~5.5 || ^6.0",
"illuminate/database": "~5.5 || ^6.0"
"php": "^8.1",
"illuminate/support": "^v10.8.0",
"illuminate/console": "^v10.14.1",
"illuminate/database": "^v10.14.1"
},
"autoload": {
"psr-0": {
Expand Down