-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 1.05 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": "gitkv/laravel-uniteller",
"description": "Laravel integration internet-acquiring of the Uniteller (unofficial)",
"keywords": ["php", "Lumen", "Laravel", "internet-acquiring", "uniteller", "payment"],
"authors": [
{
"name": "Nikolay Volkov",
"email": "gitkv@ya.ru",
"homepage": "https://github.com/gitkv",
"role": "Creator"
}
],
"license": "MIT",
"type": "library",
"require": {
"php": ">=7.1",
"tmconsulting/uniteller-php-sdk": "^0.2.1"
},
"autoload": {
"psr-4": {
"gitkv\\Uniteller\\": "src",
"gitkv\\Uniteller\\Examples\\": "Examples",
"gitkv\\Uniteller\\tests\\": "tests"
}
},
"support": {
"issues": "https://github.com/gitkv/laravel-uniteller/issues",
"source": "https://github.com/gitkv/laravel-uniteller"
},
"minimum-stability": "dev",
"prefer-stable": true,
"optimize-autoloader": true,
"require-dev": {
"phpunit/phpunit": "^7"
}
}