forked from zumba/amplitude-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
34 lines (34 loc) · 920 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": "zumba/amplitude-php",
"description": "PHP SDK for Amplitude",
"keywords": ["amplitude", "sdk", "analytics", "tracking"],
"homepage": "https://github.com/zumba/amplitude-php",
"license": "MIT",
"authors": [
{
"name": "Zumba Fitness, LLC",
"homepage": "https://tech.zumba.com"
},
{
"name": "Jonathan Foote",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"ext-curl": "*",
"php": "^7.4|^8.0",
"psr/log": "^1.0|^2.0|^3.0"
},
"require-dev": {
"phpunit/phpunit": "^8.0|^9.0",
"squizlabs/php_codesniffer": "^3.0",
"php-coveralls/php-coveralls": "^2.4"
},
"autoload": {
"psr-4": {
"Zumba\\Amplitude\\": "./src/",
"Zumba\\Amplitude\\Test\\": "./test/"
}
}
}