-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
67 lines (67 loc) · 1.71 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "mailerlite/mailerlite-php",
"description": "MailerLite PHP SDK",
"keywords": [
"MailerLite",
"mailerlite",
"sdk",
"email",
"marketing"
],
"homepage": "https://github.com/mailerlite/mailerlite-php",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Remigijus Rekerta",
"email": "remigijus.rekerta@mailerlite.com",
"role": "Developer"
}
],
"require": {
"ext-json": "*",
"php": "^7.4|^8.0",
"php-http/client-common": "^2.2",
"php-http/discovery": "^1.9",
"php-http/httplug": "^2.1",
"psr/http-client-implementation": "^1.0",
"psr/http-message": "^1.0 || ^2.0"
},
"require-dev": {
"phpunit/phpunit": "^7.5.15 || ^8.4 || ^9.0",
"php-http/mock-client": "^1.0",
"php-http/message": "^1.0",
"mockery/mockery": "^0.9.4",
"guzzlehttp/psr7": "^2.6.1",
"http-interop/http-factory-guzzle": "^1.0",
"php-http/guzzle7-adapter": "^0.1",
"friendsofphp/php-cs-fixer": "^2.18",
"phpstan/phpstan": "^1.10"
},
"autoload": {
"psr-4": {
"MailerLite\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MailerLite\\Tests\\": "tests/"
}
},
"scripts": {
"analyse": [
"@php vendor/bin/phpstan analyse --ansi"
],
"test": [
"@php vendor/bin/phpunit tests/"
],
"format": [
"@php vendor/bin/php-cs-fixer fix --verbose --diff"
]
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}