-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
33 lines (33 loc) · 909 Bytes
/
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
{
"name": "shopblocks-engineering/omnipay-klarna-hpp",
"type": "library",
"description": "Klarna HPP for Omnipay payment processing library",
"keywords": ["Klarna Checkout", "Omnipay", "Shopblocks", "Shopblocks Engineering"],
"homepage": "https://github.com/shopblocks-engineering/omnipay-klarna-hpp",
"license": "MIT",
"autoload": {
"psr-4" : {
"Omnipay\\KlarnaHPP\\" : "src/",
"Omnipay\\KlarnaHPP\\Tests\\" : "tests/"
}
},
"authors": [
{
"name": "Shopblocks Engineering Team",
"email": "engineering@shopblocks.com"
}
],
"require": {
"php": "^7.1|^7.3|^8",
"omnipay/common": "~3.0",
"ext-json": "*"
},
"require-dev": {
"omnipay/tests": "^3"
},
"extra": {
"branch-alias": {
"dev-master": "3.0.x-dev"
}
}
}