forked from mikebronner/laravel-mixpanel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
34 lines (34 loc) · 922 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
{
"name": "genealabs/laravel-mixpanel",
"description": "MixPanel wrapper for Laravel 5.",
"license": "MIT",
"authors": [
{
"name": "Mike Bronner",
"email": "hello@genealabs.com"
}
],
"autoload": {
"psr-4": {
"GeneaLabs\\LaravelMixpanel\\": "src/"
}
},
"require": {
"php": ">=7.0.0",
"illuminate/config": "5.1.* || 5.3.* || 5.4.*",
"illuminate/events": "5.1.* || 5.3.* || 5.4.*",
"illuminate/routing": "5.1.* || 5.3.* || 5.4.*",
"illuminate/support": "5.1.* || 5.3.* || 5.4.*",
"nesbot/carbon": "^1.19",
"mixpanel/mixpanel-php": "~2.0",
"sinergi/browser-detector": "~5.0"
},
"require-dev": {
"phpunit/phpunit": "4.*"
},
"autoload-dev": {
"psr-4": {
"GeneaLabs\\LaravelMixpanel\\Tests\\": "tests/"
}
}
}