-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
executable file
·51 lines (51 loc) · 1.48 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
{
"name": "oyst/oyst-1click-magento2",
"description": "Official Magento 2 Plugin to use the 1-Click payment.",
"homepage": "https://github.com/oystparis/oyst-1click-magento2/",
"keywords": ["magento", "oyst", "api", "php", "payment", "1-click", "catalog", "order", "module"],
"license": "Apache-2.0",
"type": "magento2-module",
"version": "2.0.0",
"authors": [
{
"name": "Oyst Team",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"require": {
"magento/framework": "101.0.*"
},
"require-dev": {
"phpunit/phpunit": "^4.8",
"squizlabs/php_codesniffer": "^2.2 || ^3.0",
"magento-ecg/coding-standard": "^3.1",
"sebastian/phpdcd": "*",
"sebastian/phpcpd": "^2.0",
"phpmd/phpmd": "^2.3",
"phploc/phploc": "*",
"wimg/php-compatibility": "*"
},
"repositories": {
"magento": {
"type": "composer",
"url": "https://repo.magento.com/"
}
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Oyst\\OneClick\\": ""
}
},
"config": {
"optimize-autoloader": true
},
"support": {
"issues": "https://github.com/oystparis/oyst-1click-magento2/issues",
"source": "https://github.com/oystparis/oyst-1click-magento2",
"build": "https://travis-ci.org/oystparis/oyst-1click-magento2"
}
}