-
Notifications
You must be signed in to change notification settings - Fork 30
/
composer.json
42 lines (42 loc) · 1.08 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
{
"name": "webtopay/libwebtopay",
"description": "PHP Library for Paysera payment gateway integration",
"version": "3.0.1",
"license": "LGPL-3.0",
"authors": [
{
"name": "Paysera",
"homepage": "https://www.paysera.com/"
}
],
"autoload": {
"classmap": ["src/", "tests/"]
},
"require": {
"php": ">=7.4",
"ext-simplexml": "*",
"ext-openssl": "*",
"ext-libxml": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"friendsofphp/php-cs-fixer": "~3.38.0",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan-deprecation-rules": "^1.1",
"phpstan/phpstan-mockery": "^1.1",
"phpstan/phpstan-phpunit": "^1.3",
"mockery/mockery": "^1.6",
"ext-xdebug": "*"
},
"scripts": {
"phpunit": "php ./vendor/phpunit/phpunit/phpunit tests"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
},
"platform": {
"php": "7.4.21"
}
}
}