forked from mojopollo/laravel-json-schema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
29 lines (29 loc) · 943 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
{
"name": "mojopollo/laravel-json-schema",
"description": "Create all your migrations and models from one JSON schema file. Laravel Database Schema in JSON allows you to define your entire Laravel database schema in one JSON file then generates all the necessary migration files",
"keywords": ["mojopollo", "mojo", "laravel", "json", "schema", "database", "laravel migrations from json"],
"homepage": "http://localhost",
"license" : "MIT",
"authors": [
{
"name": "Jaime Medina",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4.0",
"illuminate/support": "~5.0",
"illuminate/filesystem": "~5.0",
"illuminate/database": "~5.0",
"laracasts/generators": "dev-master#4e9ce5db9d93475ca27b993a92de3b15090aa139"
},
"require-dev": {
"phpunit/phpunit": "4.7.*"
},
"autoload": {
"psr-4": {
"Mojopollo\\Schema\\": "src/"
}
},
"minimum-stability": "stable"
}