-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
62 lines (62 loc) · 1.61 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
{
"name": "gsaimeos/gs-saferpay",
"description": "Saferpay payment extension for Aimeos web shops and e-commerce solutions",
"keywords": ["aimeos", "payment", "shop", "e-commerce", "saferpay"],
"homepage": "https://aimeos.org/",
"type": "aimeos-extension",
"license": "GPL-3.0-or-later",
"support": {
"source": "https://github.com/gsaimeos/gs-saferpay",
"issues": "https://github.com/gsaimeos/gs-saferpay/issues",
"forum": "https://aimeos.org/help",
"wiki": "https://aimeos.org/docs"
},
"prefer-stable": true,
"minimum-stability": "dev",
"require": {
"php": ">=5.3.3",
"aimeos/aimeos-core": "^2018 || ^2019",
"composer/installers": "^1.0",
"ticketpark/saferpay-json-api": "@dev"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16",
"overtrue/phplint": "^1.2",
"phing/phing": "^2.16",
"phing/phing-composer-configurator": "dev-master",
"phpunit/phpunit": "^5.7"
},
"repositories": [
{ "type": "vcs", "url": "https://github.com/gilbertsoft/php-saferpay" }
],
"config": {
"bin-dir": ".build/bin",
"vendor-dir": ".build/vendor",
"optimize-autoloader": true,
"sort-packages": true
},
"scripts": {
"test:php:cgl": [
"php-cs-fixer --diff -v fix"
],
"test:php:lint": [
"phplint"
],
"test:php:unit": [
"phpunit -c lib/custom/tests/phpunit.xml"
],
"test": [
"@test:php:cgl",
"@test:php:lint",
"@test:php:unit"
]
},
"autoload": {
"psr-4": {
"Aimeos\\MShop\\": "lib/custom/src/MShop"
},
"classmap": [
"lib/custom/src"
]
}
}