-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
47 lines (47 loc) · 1.19 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
{
"name": "getkevin/kevin-magento2",
"description": "Implements integration with the Kevin payment service provider.",
"version": "1.3.4",
"authors": [
{
"name": "kevin.",
"email": "[email protected]"
}
],
"require": {
"getkevin/kevin-php": "0.16.2"
},
"type": "magento2-module",
"license": [
"OSL-3.0",
"AFL-3.0"
],
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Kevin\\Payment\\": ""
}
},
"scripts": {
"fix-style": [
"wget https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v3.51.0/php-cs-fixer.phar -O php-cs-fixer",
"chmod a+x php-cs-fixer",
"./php-cs-fixer fix --config=./.php.cs.fixer.php -v --allow-risky=yes"
],
"check-style": [
"wget https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v3.51.0/php-cs-fixer.phar -O php-cs-fixer",
"chmod a+x php-cs-fixer",
"./php-cs-fixer fix --config=./.php.cs.fixer.php -v --allow-risky=yes --dry-run"
]
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^v3.51.0"
},
"extra": {
"exclude-from-files": [
"registration.php"
]
}
}