-
Notifications
You must be signed in to change notification settings - Fork 25
/
composer.json
36 lines (36 loc) · 1.09 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
{
"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": "manuel.reinhard@ticketpark.ch"
},
{
"name": "Additional contributors",
"homepage": "https://github.com/Ticketpark/SaferpayJsonApi/graphs/contributors"
}
],
"require": {
"php": "~7.4|~8.0.0|~8.1.0|~8.2.0|~8.3.0",
"doctrine/annotations": "^1.11|^2.0",
"jms/serializer": "^3.16",
"guzzlehttp/guzzle": "^6.3|^7.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"phpstan/phpstan": "^1.6",
"friendsofphp/php-cs-fixer": "^3.16",
"rector/rector": "^1.1"
},
"autoload": {
"psr-4": {
"Ticketpark\\SaferpayJson\\": "lib/SaferpayJson/",
"Ticketpark\\SaferpayJson\\Tests\\": "tests/SaferpayJson/Tests/"
}
}
}