-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 801 Bytes
/
composer.json
File metadata and controls
34 lines (34 loc) · 801 Bytes
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
{
"name": "foothing/laravel-simple-pageviews",
"license": "MIT",
"keywords": ["tracking", "page views", "page hits", "laravel"],
"authors": [
{
"name": "brazorf",
"email": "fabrizio.ranieri@gmail.com"
}
],
"require": {
"illuminate/database": ">=5.1",
"illuminate/http": ">=5.1",
"foothing/laravel-repository": ">=0.8.0",
"nesbot/carbon": "^1.21",
"jaybizzle/crawler-detect": "1.*"
},
"require-dev": {
"mockery/mockery": "^0.9.5",
"orchestra/testbench": "3.1.*",
"codeclimate/php-test-reporter": "^0.3.2",
"phpunit/phpunit": "4.8.*"
},
"autoload": {
"psr-4": {
"Foothing\\Laravel\\Visits\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Foothing\\Tests\\Laravel\\Visits\\": "tests"
}
}
}