-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
44 lines (44 loc) · 1.01 KB
/
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": "rdoepner/cleverreach",
"type": "library",
"description": "CleverReach REST API v3 client",
"keywords": [
"newsletter",
"cleverreach",
"rest-api"
],
"homepage": "https://github.com/rdoepner/cleverreach",
"license": "MIT",
"authors": [
{
"name": "Rico Döpner",
"email": "[email protected]"
}
],
"require": {
"ext-json": "*",
"guzzlehttp/guzzle": "^6.3 || ^7.0",
"psr/log": "^1.1 || ^2.0 || ^3.0"
},
"require-dev": {
"monolog/monolog": "^1.24 || ^2.0 || ^3.0",
"phpunit/phpunit": "^7.5",
"symfony/dotenv": "^4.2"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"rdoepner\\CleverReach\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"rdoepner\\CleverReach\\Tests\\": "tests/"
}
}
}