forked from enhavo/cleverreach
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1017 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": "enhavo/cleverreach",
"type": "library",
"description": "CleverReach REST API v3 client",
"keywords": [
"newsletter",
"cleverreach",
"rest-api"
],
"homepage": "https://github.com/enhavo/cleverreach",
"license": "MIT",
"authors": [
{
"name": "Benjamin Lutze",
"email": "[email protected]"
}
],
"require": {
"ext-json": "*",
"guzzlehttp/guzzle": "^6.5 || ^7",
"psr/log": "^1.1 || ^2 || ^3"
},
"require-dev": {
"monolog/monolog": "^1.24",
"phpunit/phpunit": "^7.5",
"symfony/dotenv": "^4.2"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"Enhavo\\Component\\CleverReach\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Enhavo\\Component\\CleverReach\\Tests\\": "tests/"
}
}
}