-
Notifications
You must be signed in to change notification settings - Fork 18
/
composer.json
35 lines (35 loc) · 947 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
{
"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": "*",
"ext-json": "*",
"php": ">=7.2",
"psr/log": "^1.0 | ^2.0 | ^3.0"
},
"require-dev": {
"phpunit/phpunit": "8.3.* | ^9",
"squizlabs/php_codesniffer": "3.4.*",
"php-coveralls/php-coveralls": "^2.4"
},
"autoload": {
"psr-4": {
"Zumba\\Amplitude\\": "./src/",
"Zumba\\Amplitude\\Test\\": "./test/"
}
}
}