-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
55 lines (55 loc) · 1.41 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
{
"name": "veridu/idos-sdk-php",
"description": "Veridu idOS PHP SDK.",
"license": "MIT",
"type": "library",
"keywords": [],
"homepage": "https://veridu.com/",
"authors": [
{
"name": "Flavio Heleno",
"email": "[email protected]"
},
{
"name": "Rafael Campanari",
"email": "[email protected]"
},
{
"name": "Caue Lorenzato",
"email": "[email protected]"
},
{
"name": "Rafael Andreatta",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"idOS\\": "src/idOS",
"Test\\": "test"
}
},
"require": {
"php": ">=7.0",
"guzzlehttp/guzzle": "^6.0",
"lcobucci/jwt": "^3.1",
"roave/security-advisories": "dev-master"
},
"require-dev": {
"ext-xsl": "*",
"friendsofphp/php-cs-fixer": "@stable",
"pdepend/pdepend": "@stable",
"phploc/phploc": "@stable",
"phpmd/phpmd" : "@stable",
"phpunit/dbunit": "@stable",
"phpunit/phpunit": "@stable",
"psy/psysh": "@stable",
"sebastian/phpcpd": "@stable",
"sensiolabs/security-checker": "@stable",
"squizlabs/php_codesniffer": "@stable",
"theseer/phpdox": "@stable"
},
"config": {
"optimize-autoloader": false
}
}