-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
72 lines (72 loc) · 1.77 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
68
69
70
71
72
{
"name": "wirecard/oxid-ee",
"description": "Wirecard paymentSDK module for the OXID eShop",
"type": "oxideshop-module",
"license": "GPL-3.0",
"keywords": [
"oxid",
"modules",
"eShop",
"payment"
],
"repositories": {
"phpmd/oxmd": {
"type": "vcs",
"url": "https://github.com/OXID-eSales/oxmd"
}
},
"require": {
"php": "^7.1",
"wirecard/payment-sdk-php": "3.8.1",
"wirecard/io-converter": "^1.0",
"php-http/guzzle6-adapter": "^1.1.1",
"guzzlehttp/psr7": "<=1.5.0"
},
"require-dev": {
"phpmd/phpmd": "^2.6.0",
"oxid-esales/coding-standards": "^3.0.0",
"codacy/coverage": "dev-master",
"symfony/yaml": "^4.2"
},
"extra": {
"oxideshop": {
"blacklist-filter": [
".bin/**/*",
".bundle/**/*",
"documentation/**/*.*",
".codacy.yml",
".dockerignore",
".env.template",
".rubocop.yml",
".ruby-version",
".travis.yml",
"docker-compose.*",
"Dockerfile",
"Gemfile*",
"phpcs.xml",
"phpmd.xml",
"Rakefile",
"CHANGELOG.md",
"CONTRIBUTING.md",
"README.md"
],
"target-directory": "wirecard/paymentgateway"
}
},
"scripts": {
"cs-check": "phpcs --runtime-set ignore_warnings_on_exit true --standard=./phpcs.xml .",
"cs-fix": "phpcbf --runtime-set ignore_warnings_on_exit true --standard=./phpcs.xml .",
"upload-coverage": "codacycoverage clover Tests/reports/clover.xml",
"md": "phpmd Controller,Core,Extend,Model text phpmd.xml"
},
"autoload": {
"psr-4": {
"Wirecard\\Oxid\\": "../../../source/modules/wirecard/paymentgateway"
}
},
"autoload-dev": {
"psr-4": {
"PHPMD\\OXMD\\": "CodeAnalysis/PHPMD/OXMD"
}
}
}