-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (57 loc) · 1.4 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": "shababsoftwares/laravel-friendships",
"description": "This package gives Eloquent models the ability to manage their friendships.",
"keywords": ["laravel", "friendships", "friend-system", "friends", "eloquent"],
"license": "MIT",
"authors": [{
"name": "Muhammad Arif Shabab",
"email": "shabab.softwares@gmail.com"
}],
"keywords": [
"framework",
"laravel",
"PHP",
"friendship",
"circle",
"friend",
"chat",
"message",
"mutual",
"group"
],
"autoload-dev": {
"classmap": [
"vendor/laravel/laravel/tests/TestCase.php"
],
"files": [
"tests/helpers.php"
],
"psr-4": {
"Tests\\": "tests/"
}
},
"require": {
"php": ">=7.3"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"fzaninotto/faker": "~1.4",
"laravel/laravel": "^8.0",
"codeclimate/php-test-reporter": "^0.3.2",
"doctrine/dbal": "^2.5",
"orchestra/testbench": "^4.0"
},
"autoload": {
"psr-4": {
"ShababSoftwares\\Friendships\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"ShababSoftwares\\Friendships\\FriendshipsServiceProvider"
]
}
},
"minimum-stability": "stable"
}