-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
38 lines (38 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
37
38
{
"name": "lamoda/atol-client-bundle",
"description": "Symfony Bundle for integration with lamoda/atol-client",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Pavel Agaletskiy",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": "^7.2",
"lamoda/atol-client": "^1.6.3",
"symfony/dependency-injection": "^4.0 || ^5.0",
"symfony/http-kernel": "^4.0 || ^5.0",
"symfony/config": "^4.0 || ^5.0",
"symfony/yaml": "^4.0 || ^5.0",
"jms/serializer-bundle": "^3.3",
"guzzlehttp/guzzle": "^6.2 || ^7.3"
},
"require-dev": {
"symfony/symfony": "^4.2.9 || 5.4",
"phpunit/phpunit": "^7.5.20",
"friendsofphp/php-cs-fixer": "^2.11"
},
"autoload": {
"psr-4": {
"Lamoda\\AtolClientBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Lamoda\\AtolClientBundle\\Tests\\": "tests/"
}
}
}