混合分销性质类型
Showing
with
1096 additions
and
37 deletions
... | ... | @@ -12,7 +12,8 @@ |
"predis/predis": "^1.1", | ||
"vladimir-yuldashev/laravel-queue-rabbitmq": "5.2", | ||
"maatwebsite/excel": "2.1.0", | ||
"guzzlehttp/guzzle": "6.3" | ||
"guzzlehttp/guzzle": "6.3", | ||
"mavinoo/laravel-batch": "^2.3" | ||
}, | ||
"require-dev": { | ||
"fzaninotto/faker": "~1.4", | ||
... | ... | @@ -54,6 +55,7 @@ |
] | ||
}, | ||
"config": { | ||
"preferred-install": "dist" | ||
"preferred-install": "dist", | ||
"platform-check": false | ||
} | ||
} |
vendor/composer/InstalledVersions.php
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
vendor/composer/installed.php
0 → 100644
This diff is collapsed.
Click to expand it.
vendor/mavinoo/laravel-batch/.gitignore
0 → 100644
vendor/mavinoo/laravel-batch/LICENSE
0 → 100644
vendor/mavinoo/laravel-batch/README.md
0 → 100644
vendor/mavinoo/laravel-batch/composer.json
0 → 100644
{ | ||
"name": "mavinoo/laravel-batch", | ||
"description": "Insert and update batch (bulk) in laravel", | ||
"type": "library", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Mohammad Ghanbari", | ||
"email": "mavin.developer@gmail.com" | ||
} | ||
], | ||
"require": { | ||
"ext-json": "*" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^9.3@dev" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Mavinoo\\Batch\\": "src/" | ||
}, | ||
"files": [ | ||
"src/Common/Helpers.php" | ||
] | ||
}, | ||
"extra": { | ||
"laravel": { | ||
"providers": [ | ||
"Mavinoo\\Batch\\BatchServiceProvider" | ||
], | ||
"aliases": { | ||
"Batch": "Mavinoo\\Batch\\BatchFacade" | ||
} | ||
} | ||
}, | ||
"minimum-stability": "dev" | ||
} |
vendor/mavinoo/laravel-batch/src/Batch.php
0 → 100644
This diff is collapsed.
Click to expand it.
Please
register
or
sign in
to comment