-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 950 Bytes
/
composer.json
File metadata and controls
38 lines (38 loc) · 950 Bytes
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
{
"name": "dotdigital/dotdigital-php",
"description": "Dotdigital PHP Library",
"version": "2.9.0",
"license": "MIT",
"autoload": {
"psr-4": {
"Dotdigital\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Dotdigital\\Tests\\": "tests/"
}
},
"require": {
"php": "^7.4 || ^8.0",
"ext-json": "*",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"php-http/client-common": "^2.4",
"php-http/discovery": "^1.15.0"
},
"require-dev": {
"guzzlehttp/guzzle": "^7.4",
"symplify/easy-coding-standard": "^9.4",
"phpstan/phpstan": "^1.0",
"phpunit/phpunit": "^9.6",
"php-http/curl-client": "^2.2",
"symfony/dotenv": "^5.4",
"fakerphp/faker": "^1.22"
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}