-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
69 lines (69 loc) · 1.7 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
{
"name": "sequra/magento2-core",
"description": "Core module for SeQura Payment Methods",
"type": "magento2-module",
"keywords": [
"payment",
"sequra",
"pagos",
"magento2"
],
"version": "2.5.5",
"license": "MIT",
"authors": [
{
"name": "Sequra Engineering",
"email": "dev@sequra.es"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=7.4",
"sequra/integration-core": "v1.0.17",
"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": [
".docker",
".github",
"bin",
"docker-entrypoint-init.d",
"Test",
".env",
".env.sample",
".gitattributes",
".gitignore",
"docker-compose.override.sample.yml",
"docker-compose.yml",
"README.md",
"setup.sh",
"teardown.sh",
"tests-e2e",
"package.json",
"package-lock.json",
"playwright.config.js"
]
},
"require-dev": {
"magento/magento-coding-standard": "^33.0"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}