Files
laravel-data-sync/composer.json
Jani Gyllenberg be37f631ca Documentation WIP
2019-01-22 21:34:15 -05:00

33 lines
776 B
JSON

{
"name": "distinctm/laravel-data-sync",
"description": "Laravel utility to keep records synced between enviroments through source control",
"license": "MIT",
"authors": [
{
"name": "distinctm",
"email": "jani@marketdistinctly.com"
}
],
"require": {},
"require-dev": {
"orchestra/testbench": "^3.7"
},
"autoload": {
"psr-4" : {
"distinctm\\LaravelDataSync\\": "src/"
}
},
"autoload-dev": {
"psr-4" : {
"distinctm\\LaravelDataSync\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"distinctm\\LaravelDataSync\\DataSyncBaseServiceProvider"
]
}
}
}