-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
50 lines (50 loc) · 1.03 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
45
46
47
48
49
50
{
"name": "mobilepayphp/mobilepay-php-sdk",
"license": "MIT",
"type": "library",
"description": "",
"keywords": [
"MobilePay",
"PHP",
"SDK",
"mobile",
"pay"
],
"homepage": "https://github.com/mobilepayphp/mobilepay-php-sdk",
"authors": [
{
"name": "Jan Schaedlich",
"email": "mail@janschaedlich.com",
"homepage": "https://www.linkedin.com/in/janschaedlich"
}
],
"autoload": {
"psr-4": {
"MobilePayPhp\\MobilePay\\": "src/MobilePay",
"MobilePayPhp\\Api\\": "src/Api"
}
},
"config": {
"sort-packages": true
},
"require": {
"php": ">=8.1",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"ramsey/uuid": "^4.5"
},
"require-dev": {
"brianium/paratest": "^6.6",
"friendsofphp/php-cs-fixer": "^3.13",
"nyholm/psr7": "^1.5",
"phpstan/phpstan": "^1.9",
"phpunit/phpunit": "^9",
"rector/rector": "^0.14.7",
"spatie/phpunit-snapshot-assertions": "^4.2",
"symfony/http-client": "^6.1",
"symplify/phpstan-rules": "^11.1"
},
"provide": {
"php-http/client-implementation": "*"
}
}