forked from Target365/sdk-for-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 991 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
43
44
45
{
"name": "target365/sdk",
"description": "Target365 SDK",
"type": "library",
"require": {
"php": ">=7.1",
"guzzlehttp/guzzle": "~6.0",
"phpseclib/phpseclib": "~2.0",
"psr/log": "^1.0"
},
"license": "MIT",
"authors": [
{
"name": "Target365",
"email": "[email protected]"
}
],
"require-dev": {
"phpunit/phpunit": "^7.0",
"symfony/var-dumper": "^4.1",
"monolog/monolog": "^1.23",
"incenteev/composer-parameter-handler": "~2.0",
"symfony/yaml": "~4.2",
"ramsey/uuid": "^3.8"
},
"autoload": {
"psr-4": {
"Target365\\ApiSdk\\": "src/",
"Target365\\ApiSdk\\Tests\\": "tests/"
}
},
"scripts": {
"post-install-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters"
],
"post-update-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters"
]
},
"extra": {
"incenteev-parameters": {
"file": "tests/secrets.yml"
}
}
}