-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
54 lines (54 loc) · 1.26 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
{
"name": "sequra/magento2-core",
"description": "Core module for SeQura Payment Methods",
"type": "magento2-module",
"keywords": [
"payment",
"sequra",
"pagos",
"magento2"
],
"version": "2.5.4",
"license": "MIT",
"authors": [
{
"name": "Sequra Engineering",
"email": "dev@sequra.es"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=7.4",
"sequra/integration-core": "v1.0.16",
"ext-json": "*"
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Sequra\\Core\\": ""
}
},
"autoload-dev": {
"psr-4": {
"SeQura\\Core\\Tests\\Infrastructure\\": "vendor/sequra/integration-core/tests/Infrastructure",
"SeQura\\Core\\Tests\\BusinessLogic\\": "vendor/sequra/integration-core/tests/BusinessLogic"
}
},
"archive": {
"exclude": [
"docs",
"scripts",
"Test"
]
},
"require-dev": {
"magento/magento-coding-standard": "^33.0"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}