-
Notifications
You must be signed in to change notification settings - Fork 72
/
composer.json
executable file
·61 lines (61 loc) · 1.36 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
58
59
60
61
{
"name": "multicaret/laravel-acquaintances",
"description": "This light package, with no dependencies, gives Eloquent models the ability to manage friendships (with groups). And interactions such as: Likes, favorites, votes, subscribe, follow, ..etc. And it includes advanced rating system.",
"keywords": [
"laravel",
"friendships",
"followships",
"interactions",
"wish-list",
"like",
"rate",
"rating",
"social-media",
"friend-system",
"friends",
"followers",
"eloquent"
],
"require": {
"php": ">=8.0"
},
"require-dev": {
"laravel/laravel": "5.*|^9.0|^10.0|^11.0",
"phpunit/phpunit": "5.*",
"mockery/mockery": "1.0.x-dev",
"fzaninotto/faker": "~1.4",
"codeclimate/php-test-reporter": "^0.3.2",
"doctrine/dbal": "^2.5"
},
"license": "MIT",
"authors": [
{
"name": "Mohamed Kawsara",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Multicaret\\Acquaintances\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
},
"classmap": [
"vendor/laravel/laravel/tests/TestCase.php"
],
"files": [
"tests/helpers.php"
]
},
"extra": {
"laravel": {
"providers": [
"Multicaret\\Acquaintances\\AcquaintancesServiceProvider"
]
}
},
"minimum-stability": "stable"
}