-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathcomposer.json
65 lines (65 loc) · 1.73 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
{
"name": "nickcv/yii2-mandrill",
"description": "Mandrill Api Integration for Yii2",
"type": "yii2-extension",
"keywords": [
"yii2",
"extension",
"mandrill",
"mailer",
"email"
],
"license": "GPL-3.0",
"authors": [
{
"name": "Nicola Puddu",
"email": "[email protected]"
},
{
"name": "Simon Karlen",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"require": {
"php": ">=7.0",
"yiisoft/yii2": "~2.0",
"mailchimp/transactional": "^1.0.0"
},
"require-dev": {
"cweagans/composer-patches": "^1.7",
"phpunit/phpunit": "4.8.34",
"victorjonsson/markdowndocs": "*",
"yiisoft/yii2-coding-standards": "~2.0"
},
"autoload": {
"psr-4": {
"nickcv\\mandrill\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"yiiunit\\extensions\\mandrill\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
},
"composer-exit-on-patch-failure": false,
"patches": {
"phpunit/phpunit-mock-objects": {
"Fix PHP 7 and 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_mock_objects.patch"
},
"phpunit/phpunit": {
"Fix PHP 7 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php7.patch",
"Fix PHP 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php8.patch"
}
}
}
}