forked from jumper423/laravel-postgresql-inherit
-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
35 lines (35 loc) · 927 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"name": "rishi-ramawat/laravel-postgresql-inherit",
"description": "Add inheritance in postgresql tables",
"license": "MIT",
"keywords": ["laravel", "postgres", "postresql", "database", "migrations", "inheritance"],
"authors": [
{
"name": "Thibaud Dauce",
"email": "thibaud@dauce.fr"
},
{
"name": "Pasechnik Vlad",
"email": "jump.e.r@yandex.ru"
},
{
"name": "Rishi Ramawat",
"email": "rishi.ramawat@gmail.com"
}
],
"require": {
"php": ">=5.4.0",
"illuminate/support": "~5.2",
"illuminate/database": "~5.2"
},
"require-dev": {
"mockery/mockery": "~0.9",
"phpunit/phpunit": "^5.7"
},
"autoload": {
"psr-4": {
"RishiRamawat\\PostgresSchema\\": "src/"
}
},
"minimum-stability": "stable"
}