-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
31 lines (31 loc) · 948 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
{
"name": "payone/auto-cc-detection-example",
"description": "Example implementation of PAYONE Client API auto credit card type detection.",
"type": "project",
"keywords": ["payone", "credit card", "auto detection"],
"homepage": "https://www.payone.com",
"license": "MIT",
"authors": [
{
"name": "PAYONE",
"email": "[email protected]",
"homepage": "https://www.payone.com"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/PAYONE-GmbH/auto-credit-card-detection-example/issues",
"docs": "https://docs.payone.com/display/public/INT/Modern+Credit+Card+Checkout"
},
"require": {
"php": ">=7.4",
"ext-json": "*",
"vlucas/phpdotenv": "^3.6"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Payone\\": "src/"
}
}
}