-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
44 lines (44 loc) · 1.07 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
{
"name": "ck-developer/omnipay-payline",
"description": "Payline gateway for the Omnipay PHP payment processing library",
"keywords": [
"omnipay",
"payline",
"payment"
],
"homepage": "https://github.com/ck-developer/omnipay-payline",
"license": "MIT",
"authors": [
{
"name": "Claude Khedhiri",
"email": "[email protected]",
"homepage": "http://www.khedhiri.com"
}
],
"require": {
"php" : ">=5.3.0 || >=7.0",
"ext-soap": "*",
"omnipay/common": "~2.0"
},
"require-dev": {
"omnipay/tests": "~2.0",
"friendsofphp/php-cs-fixer": "~1.11"
},
"autoload": {
"psr-4": {
"Omnipay\\Payline\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Omnipay\\Payline\\Test\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"git-hook-install": "php .github/hooks/install.php",
"post-install-cmd": [
"@git-hook-install"
]
}
}