forked from printu/customerio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 946 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
43
44
{
"name": "printu/customerio",
"description": "PHP API for Customer.io",
"keywords": [
"http",
"rest",
"customer.io",
"customerio",
"api",
"client"
],
"type": "library",
"license": "MIT",
"homepage": "http://customer.io/",
"authors": [
{
"name": "Paweł Krzaczkowski",
"email": "[email protected]",
"homepage": "https://github.com/krzaczek"
}
],
"minimum-stability": "stable",
"require": {
"php": "~7.3|^8.0",
"ext-json": "*",
"guzzlehttp/guzzle": "~7.2"
},
"conflict": {
"userscape/customerio": "*"
},
"require-dev": {
"phpunit/phpunit": "~9.5"
},
"autoload": {
"psr-4": {
"Customerio\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Customerio\\Tests\\": "tests/"
}
}
}