forked from Ticketpark/SaferpayJsonApi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 1.04 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
{
"name": "ticketpark/saferpay-json-api",
"type": "library",
"description": "A php library to use the json api of Saferpay",
"keywords": ["saferpay"],
"homepage": "https://github.com/Ticketpark/SaferpayJsonApi",
"license": "MIT",
"authors": [
{
"name": "Manuel Reinhard",
"email": "[email protected]"
},
{
"name": "Additional contributors",
"homepage": "https://github.com/Ticketpark/SaferpayJsonApi/graphs/contributors"
}
],
"require": {
"php": "^7.3|^8.0",
"doctrine/annotations": "^1.11",
"jms/serializer": "^1.0|^3.0",
"guzzlehttp/guzzle": "^6.3|^7.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"phpstan/phpstan": "^0.12.88",
"friendsofphp/php-cs-fixer": "^2.19"
},
"autoload": {
"psr-4": {
"Ticketpark\\SaferpayJson\\": "lib/SaferpayJson/",
"Ticketpark\\SaferpayJson\\Tests\\": "tests/SaferpayJson/Tests/"
}
}
}