-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
42 lines (42 loc) · 1023 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
36
37
38
39
40
41
42
{
"name": "siro/php-klaviyo-api",
"description": "Low level but elegant Klaviyo full API wrapper for PHP with asynchronous track event support",
"type": "library",
"license": "MIT",
"keywords": [
"laravel",
"klaviyo",
"api",
"event tracker",
"event",
"event tracking",
"ecommerce",
"event",
"analytics"
],
"authors": [
{
"name": "Siro Diaz",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Siro\\Klaviyo\\": "src/Siro/Klaviyo"
}
},
"require": {
"php": "^7.1 || ^8.0",
"ext-json": "*",
"guzzlehttp/guzzle": "^6.3 || ^7.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.0",
"phpunit/phpunit": "^7.5.20 || ^8.5.8"
},
"scripts": {
"test": "phpunit",
"phpcs": "phpcs --standard=PSR2 src -n",
"phpcbf": "phpcbf -v -p --standard=PSR2 src"
}
}