-
Notifications
You must be signed in to change notification settings - Fork 14
/
composer.json
43 lines (43 loc) · 1018 Bytes
/
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
{
"name": "jamesmills/watchable",
"description": "A package to allow your Models to become watchable by a User",
"homepage": "https://github.com/jamesmills/watchable",
"keywords":
[
"watch",
"watchable",
"laravel",
"laravel-5-package",
"package",
"php7",
"eloquent",
"like",
"likeable"
],
"authors": [
{
"name": "James Mills",
"email": "[email protected]"
}
],
"require": {
"php" : "^7.0",
"illuminate/support": "~5.3.0 || ~5.4.0 || ~5.5.0 || 5.6.* || 5.7.* || 5.8.* || ^6 || ^7 || ^8"
},
"autoload": {
"psr-4": {
"JamesMills\\Watchable\\": "src"
}
},
"license": "MIT",
"extra": {
"laravel": {
"providers": [
"JamesMills\\Watchable\\WatchableServiceProvider"
]
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.0"
}
}