-
Notifications
You must be signed in to change notification settings - Fork 21
/
composer.json
58 lines (58 loc) · 1.43 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "gwinn/saas-connector",
"license": "MIT",
"description": "Set of SaaS clients",
"type": "library",
"keywords": ["api", "saas", "rest"],
"homepage": "http://github.com/gwinn/saas-connector",
"authors": [
{
"name": "Alex Lushpai",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Anna Mazepina",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Azgalot",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"email": "[email protected]"
},
"require": {
"php": ">=7.1",
"ext-json": "*",
"league/oauth2-client": "1.4.2",
"doctrine/annotations": "^1.6",
"symfony/validator": "^4.3|^5.0",
"guzzlehttp/guzzle": "^6.3",
"jms/serializer": "^1.14|^3.4"
},
"require-dev": {
"phpunit/phpunit": "^7.4",
"er1z/fakemock": "^0.3.1",
"phpstan/phpstan": "^0.11.8",
"phpmd/phpmd": "^2.6",
"squizlabs/php_codesniffer": "^3.4"
},
"autoload": {
"psr-4": {
"SaaS\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SaaS\\Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"config": {
"process-timeout": 600
}
}