-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (38 loc) · 1.18 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "michaelgatuma/plagiarism-search",
"description": "Plagiarism Search Laravel is an up-to-date plagiarism detector which has already proved its reliability to hundreds of the customers from different countries worldwide.",
"license": "MIT",
"authors": [
{
"name": "Michael Gatuma",
"email": "[email protected]",
"homepage": "https://gatuma.me"
}
],
"homepage": "https://github.com/michaelgatuma/plagiarism-search",
"keywords": ["Laravel", "PlagiarismSearch"],
"require-dev": {
"phpunit/phpunit": "^9.0|^10.0",
"orchestra/testbench": "~7"
},
"autoload": {
"psr-4": {
"Michaelgatuma\\PlagiarismSearch\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Michaelgatuma\\PlagiarismSearch\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Michaelgatuma\\PlagiarismSearch\\PlagiarismSearchServiceProvider"
],
"aliases": {
"PlagiarismSearch": "Michaelgatuma\\PlagiarismSearch\\Facades\\PlagiarismSearch"
}
}
}
}