forked from mautic/api-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 939 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": "simplyprint/mautic-api-library",
"license": "MIT",
"type": "library",
"description": "Mautic API Connector Library",
"autoload": {
"psr-4": {
"Mautic\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"Mautic\\Tests\\": "tests/"
}
},
"require": {
"php": ">=8.0",
"ext-json": "*",
"psr/log": "~1.0 || ~2.0 || ~3.0",
"psr/http-client": "^1.0",
"psr/http-client-implementation": "^1.0",
"guzzlehttp/psr7": "^2.4",
"php-http/discovery": "^1.15"
},
"require-dev": {
"kint-php/kint": "^4.1",
"friendsofphp/php-cs-fixer": "~3.12.0",
"phpunit/phpunit": "~9.5.0",
"guzzlehttp/guzzle": "^7.5"
},
"suggest": {
"guzzlehttp/guzzle": "A popular HTTP client that implements psr/http-client-implementation."
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}