-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
37 lines (37 loc) · 992 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
{
"name": "wellcometrust/dotmailer-php",
"description": "PHP Client library for the Dotmailer REST (v2) API",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Adam Neale",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1.3",
"guzzlehttp/guzzle": "^6.3"
},
"require-dev": {
"phpunit/phpunit": "^7.1",
"squizlabs/php_codesniffer": "^3.2",
"phpmd/phpmd": "^2.6"
},
"autoload": {
"psr-4": {
"Dotmailer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Dotmailer\\": "tests/"
}
},
"scripts": {
"analyse": [
"@php vendor/bin/phpcs --error-severity=0 --report=checkstyle --report-file=build/checkstyle.xml",
"@php vendor/bin/phpmd src xml phpmd.xml --suffixes=php --reportfile build/phpmd-summary.xml --ignore-violations-on-exit"
]
}
}