This repository has been archived by the owner on Mar 21, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
composer.json
80 lines (80 loc) · 2.1 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "cybercog/laravel-likeable",
"description": "Make Laravel Eloquent models Likeable & Dislikeable in a minutes!",
"type": "library",
"license": "MIT",
"keywords": [
"cybercog",
"cog",
"laravel",
"eloquent",
"trait",
"likeable",
"likable",
"like",
"dislike",
"favorite",
"favourite",
"rate",
"rating",
"emotion",
"star",
"kudos"
],
"authors": [
{
"name": "Anton Komarev",
"email": "[email protected]",
"homepage": "https://komarev.com",
"role": "Developer"
}
],
"homepage": "https://github.com/cybercog/laravel-likeable",
"support": {
"email": "[email protected]",
"issues": "https://github.com/cybercog/laravel-likeable/issues",
"wiki": "https://github.com/cybercog/laravel-likeable/wiki",
"source": "https://github.com/cybercog/laravel-likeable",
"docs": "https://github.com/cybercog/laravel-likeable/wiki"
},
"require": {
"php": "^5.6|^7.0",
"illuminate/database": "~5.1.20|~5.2|~5.3|~5.4|~5.5",
"illuminate/support": "~5.1.20|~5.2|~5.3|~5.4|~5.5"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^1.11",
"mockery/mockery": "^0.9.8",
"orchestra/database": "~3.4.0|~3.5.0",
"orchestra/testbench": "~3.4.0|~3.5.0",
"phpunit/phpunit": "^5.7|^6.0"
},
"autoload": {
"psr-4": {
"Cog\\Likeable\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Cog\\Likeable\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Cog\\Likeable\\Providers\\LikeableServiceProvider"
]
}
},
"suggest": {
"cybercog/laravel-love": "Completely refactored Laravel Likeable package."
},
"minimum-stability": "dev",
"prefer-stable" : true
}