Files
laravel-data-sync/composer.json
2022-05-17 07:02:05 -05:00

36 lines
844 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": "^8.0"
},
"require-dev": {
"orchestra/testbench": "^7.0"
},
"autoload": {
"psr-4" : {
"nullthoughts\\LaravelDataSync\\": "src/"
}
},
"autoload-dev": {
"psr-4" : {
"nullthoughts\\LaravelDataSync\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"nullthoughts\\LaravelDataSync\\DataSyncBaseServiceProvider"
]
}
}
}