-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
57 lines (57 loc) · 1.66 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "umutphp/laravel-model-recommendation",
"description": "A generic package to create recommendation for eloquent models",
"keywords": [
"umutphp",
"laravel",
"laravel_model_recommendation"
],
"homepage": "https://github.com/umutphp/laravel_model_recommendation",
"license": "MIT",
"authors": [
{
"name": "Umut Işık",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^7.4|^8.0|^8.1|^8.2|^8.3",
"illuminate/collections": "^8.0|^9.0|^10.0|^11.0",
"illuminate/contracts": "^8.0|^9.0|^10.0|^11.0",
"spatie/laravel-package-tools": "^1.4.3"
},
"require-dev": {
"brianium/paratest": "^6.2",
"nunomaduro/collision": "^5.3",
"phpunit/phpunit": "^9.3",
"squizlabs/php_codesniffer": "^3.6"
},
"autoload": {
"psr-4": {
"Umutphp\\LaravelModelRecommendation\\": "src",
"Umutphp\\LaravelModelRecommendation\\Database\\Factories\\": "database/factories"
}
},
"autoload-dev": {
"psr-4": {
"Umutphp\\LaravelModelRecommendation\\Tests\\": "tests"
}
},
"scripts": {},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Umutphp\\LaravelModelRecommendation\\ModelRecommendationServiceProvider"
],
"aliases": {
"ModelRecommendation": "Umutphp\\LaravelModelRecommendation\\ModelRecommendationFacade"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}