PlagiarismSearch.com is a leading plagiarism checking website that will provide you with an accurate report during a short timeframe. Prior to submitting your home assignments, run them through our plagiarism checker to make sure your content is authentic. Take a look at contributing.md to see a to do list.
Via Composer
$ composer require michaelgatuma/plagiarism-search
Publish the config file
$ php artisan vendor:publish --provider="Michaelgatuma\PlagiarismSearch\PlagiarismSearchServiceProvider" --tag="config"
PlagiarismSearch::createReport()
->title("Plagiarism Sample Report")
->text(" lorem ipsum dolor sit ....")//Text for check.
->file(realpath('pdf-sample.pdf'))//Or upload file for check.
->files([
realpath('pdf-sample.pdf'),
realpath('pdf-sample2.pdf')
])//Or array of real paths
->create();
PlagiarismSearch::deleteReport(24332)->commit();
PlagiarismSearch::listReports()
->reports(['324423', '231232'])//optional
->limit(20)//optional (default:10)
->pages(2)//optional (default:1)
->fetch();
PlagiarismSearch::updateReport(743845)
->fields([
'auth_key' => md5('secret'),
'remote_id' => 'my-remote-id-100',
'callback_url' => 'https://public-url.com/callback.php?id=743845',
'title' => 'Title ',
])->commit();
PlagiarismSearch::viewReport(746734)->fetch();
PlagiarismSearch::getReportStatus(233231)->fetch();
Please see the changelog for more information on what has changed recently.
$ composer test
Please see contributing.md for details and a todolist.
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
MIT. Please see the license file for more information.