Files
laravel-data-sync/composer.json
2021-06-23 09:41:47 -04:00

36 lines
849 B
JSON

{
"name": "nullthoughts/laravel-data-sync",
"description": "Laravel utility to keep records synced between environments through source control",
"license": "MIT",
"authors": [
{
"name": "nullthoughts",
"email": "jani@nullincorporated.com"
}
],
"require": {
"ext-json": "*",
"php": "^7.2|^8.0"
},
"require-dev": {
"orchestra/testbench": "^5.0"
},
"autoload": {
"psr-4" : {
"nullthoughts\\LaravelDataSync\\": "src/"
}
},
"autoload-dev": {
"psr-4" : {
"nullthoughts\\LaravelDataSync\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"nullthoughts\\LaravelDataSync\\DataSyncBaseServiceProvider"
]
}
}
}