forked from Cytracom/laravel-migration-squasher
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
32 lines (32 loc) · 919 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
{
"name": "orottier/laravel-migration-squasher",
"description": "Aggregate your incremental Laravel migration files into single migration for each table. This eliminates all alter columns and makes testing via sqlite a possibility.",
"keywords": ["framework", "laravel", "migrations", "migrate", "migration", "squash", "sqlite", "testing"],
"license": "MIT",
"authors": [
{
"name": "Jacob Barber",
"email": "[email protected]"
}
],
"require": {
"laravel/framework": "^5.1"
},
"require-dev": {
"phpunit/phpunit": "~4.0"
},
"autoload": {
"psr-0": {
"Cytracom\\Squasher": "src/"
},
"classmap": [
"src",
"src/database",
"src/commands"
]
},
"config": {
"preferred-install": "dist"
},
"minimum-stability": "dev"
}