Files
laravel-data-sync/composer.json
Ismo Vuorinen a64f17891f Travis CI Configuration and README badge
This commit adds travis-ci.com configuration and the related build status badge to the README header.
2019-08-23 09:22:36 +03:00

35 lines
806 B
JSON

{
"name": "distinctm/laravel-data-sync",
"description": "Laravel utility to keep records synced between environments through source control",
"license": "MIT",
"authors": [
{
"name": "distinctm",
"email": "jani@marketdistinctly.com"
}
],
"require": {
"ext-json": "*"
},
"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"
]
}
}
}