-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 1011 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
{
"name": "tmconsulting/hotelbook-php-sdk",
"description": "Коннектор к хотелбуку",
"type": "library",
"authors": [
{
"name": "Nikita Shatilo",
"email": "[email protected]"
}
],
"require": {
"nesbot/carbon": "^1.22",
"moneyphp/money": "^3.0",
"psr/log": "^1.0",
"tmconsulting/support": "^1.0",
"monolog/monolog": "^1.18",
"guzzlehttp/guzzle": "^6.3",
"symfony/options-resolver": "^4.0"
},
"autoload": {
"psr-4": {
"Hotelbook\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Neo\\Hotelbook\\Tests\\": "tests"
}
},
"require-dev": {
"phpunit/phpunit": "^6.4",
"phpunit/phpunit-mock-objects": "^4.0",
"mockery/mockery": "^0.9.5",
"friendsofphp/php-cs-fixer": "^2.8"
},
"scripts": {
"fix": "vendor/bin/php-cs-fixer fix . --rules=@PSR2"
}
}