-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
42 lines (42 loc) · 937 Bytes
/
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": "lamoda/payture-inpay-bundle",
"license": "MIT",
"description": "Client Bundle for Payture InPay API",
"keywords": [
"payture",
"payment",
"api",
"client",
"bundle"
],
"type": "symfony-bundle",
"authors": [
{
"name": "Lamoda developers",
"homepage": "https://tech.lamoda.ru/"
}
],
"autoload": {
"psr-4": {
"Lamoda\\Payture\\InPayBundle\\": "./src/"
}
},
"autoload-dev": {
"psr-4": {
"Lamoda\\Payture\\InPayBundle\\Tests\\": "./tests/"
}
},
"require": {
"php": "^7.1",
"lamoda/payture-inpay-client": "^1.2",
"symfony/http-kernel": "^3.4 || ^4.0",
"symfony/config": "^3.4 || ^4.0",
"symfony/dependency-injection": "^3.4 || ^4.0",
"symfony/yaml": "^3.4 || ^4.0"
},
"require-dev": {
"phpunit/phpunit": "^7.5",
"symfony/framework-bundle": "^3.4 || ^4.0",
"friendsofphp/php-cs-fixer": "^2.14"
}
}