forked from cyrildewit/eloquent-viewable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
77 lines (77 loc) · 2.28 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
{
"name": "davidjr82/eloquent-viewable",
"description": "Simple package that allows you to associate views with Eloquent models",
"type": "library",
"license": "Apache-2.0",
"homepage": "https://github.com/cyrildewit/eloquent-viewable",
"keywords": [
"cyrildewit",
"laravel",
"eloquent",
"views",
"viewable",
"visits",
"visitable",
"hits",
"counter"
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/cyrildewit/eloquent-viewable/issues",
"wiki": "https://github.com/cyrildewit/eloquent-viewable/wiki",
"source": "https://github.com/cyrildewit/eloquent-viewable",
"docs": "https://github.com/cyrildewit/eloquent-viewable/wiki"
},
"authors": [
{
"name": "Cyril de Wit",
"email": "[email protected]",
"homepage": "http://cyrildewit.nl",
"role": "Developer"
}
],
"require": {
"php": "^7.0",
"illuminate/bus": "5.5.*|5.6.*|5.7.*",
"illuminate/cache": "5.5.*|5.6.*|5.7.*",
"illuminate/contracts": "5.5.*|5.6.*|5.7.*",
"illuminate/cookie": "5.5.*|5.6.*|5.7.*",
"illuminate/database": "5.5.*|5.6.*|5.7.*",
"illuminate/http": "5.5.*|5.6.*|5.7.*",
"illuminate/queue": "5.5.*|5.6.*|5.7.*",
"illuminate/routing": "5.5.*|5.6.*|5.7.*",
"illuminate/support": "5.5.*|5.6.*|5.7.*",
"jaybizzle/crawler-detect": "^1.0",
"nesbot/carbon": "^1.22"
},
"require-dev": {
"illuminate/config": "5.5.*|5.6.*",
"mockery/mockery": "^1.0",
"orchestra/database": "^3.5",
"orchestra/testbench": "~3.5.0|~3.6.0|~3.7.0",
"phpunit/phpunit": "^6.5|^7.0"
},
"autoload": {
"psr-4": {
"CyrildeWit\\EloquentViewable\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CyrildeWit\\EloquentViewable\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"CyrildeWit\\EloquentViewable\\EloquentViewableServiceProvider"
]
}
}
}