This repository was archived by the owner on Aug 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (57 loc) · 1.66 KB
/
composer.json
File metadata and controls
57 lines (57 loc) · 1.66 KB
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
{
"name": "orca-services/datatrans-xml-api-client",
"description": "A client library for the Datatrans Payment XML API",
"type": "library",
"minimum-stability": "stable",
"homepage": "https://github.com/orca-services/php-datatrans-xml-api-client",
"license": "MIT",
"keywords": [
"Datratrans",
"Payment",
"XML",
"API",
"Client"
],
"authors": [
{
"name": "Marc Würth",
"email": "marc.wuerth@orca-services.ch",
"role": "Lead developer",
"homepage": "https://www.orca-services.ch"
},
{
"name": "Other contributors",
"homepage": "https://github.com/orca-services/php-datatrans-xml-api-client/graphs/contributors",
"role": "Contributors"
}
],
"support": {
"email": "development@orca-services.ch",
"source": "https://github.com/orca-services/php-datatrans-xml-api-client",
"issues": "https://github.com/orca-services/php-datatrans-xml-api-client/issues"
},
"require": {
"php": ">=5.5.9",
"guzzlehttp/guzzle": "^6.2",
"composer/ca-bundle": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "4.*",
"squizlabs/php_codesniffer": "^2.7"
},
"autoload": {
"psr-4": {
"OrcaServices\\Datatrans\\Xml\\Api\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"OrcaServices\\Datatrans\\Xml\\Api\\Test\\": "tests"
}
},
"scripts": {
"test": "phpunit",
"cs-check": "phpcs -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests examples",
"cs-fix": "phpcbf -p --standard=PSR2 --no-patch --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests examples"
}
}