forked from ThibaudDauce/PostgresqlSchema
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
31 lines (31 loc) · 818 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
{
"name": "jumper423/laravel-postgresql-inherit",
"description": "Add inheritance in postgresql tables",
"license": "MIT",
"keywords": ["laravel", "postgres", "postresql", "database", "migrations", "inheritance"],
"authors": [
{
"name": "Thibaud Dauce",
"email": "[email protected]"
},
{
"name": "Pasechnik Vlad",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4.0",
"illuminate/support": "5.2.*",
"illuminate/database": "5.2.*"
},
"require-dev": {
"mockery/mockery": "~0.9",
"phpunit/phpunit": "~4.0"
},
"autoload": {
"psr-4": {
"jumper423\\LaravelDataBase\\": "src/"
}
},
"minimum-stability": "stable"
}