forked from pierreboissinot/payum-paybox
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
61 lines (61 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
{
"name": "lephare/payum-paybox",
"type": "library",
"description": "Paybox extension for Payum",
"keywords": [
"payum",
"paybox",
"payment"
],
"homepage": "https://github.com/le-phare/payum-paybox",
"license": "MIT",
"authors": [
{
"name": "Matthieu REMY",
"email": "[email protected]",
"homepage": "https://github.com/remyma"
}
],
"require": {
"php": "^7.1|^8.0",
"payum/core": "^1.3",
"ext-openssl": "*",
"elao/enum": "^1.11"
},
"require-dev": {
"php-http/guzzle6-adapter": "^1.0",
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/phpstan": "^0.12.50",
"phpunit/phpunit": "^8.5 || ^9.0",
"php-http/message-factory": "^1.1"
},
"autoload": {
"psr-4": {
"Marem\\PayumPaybox\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Marem\\PayumPaybox\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse -c phpstan.neon",
"lint:fix": [
"vendor/bin/php-cs-fixer --config=.php-cs-fixer.dist.php --verbose fix src client tests"
],
"lint:cs-fixer": [
"vendor/bin/php-cs-fixer --config=.php-cs-fixer.dist.php --dry-run --verbose --path-mode=intersection fix src client tests"
],
"lint": [
"@analyse",
"@lint:cs-fixer"
],
"test": "vendor/bin/phpunit"
}
}