forked from alexbusu/druid-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 956 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
{
"name": "pixelfederation/druid-php",
"license": "BSD-3-Clause",
"type": "library",
"authors": [
{
"name": "Jozef Hrncar",
"email": "[email protected]",
"homepage": "https://github.com/pixelfederation"
},
{
"name": "Tomas Mihalicka",
"email": "[email protected]",
"homepage": "https://github.com/pixelfederation"
}
],
"minimum-stability": "stable",
"require": {
"guzzlehttp/guzzle": "^6.2",
"jms/serializer": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "^5.3",
"phpunit/php-invoker": "^1.1",
"squizlabs/php_codesniffer": "^2.6",
"phpmd/phpmd": "^2.4",
"sllh/php-cs-fixer-styleci-bridge": "^2.0",
"fabpot/php-cs-fixer": "^1.11"
},
"autoload": {
"psr-4": {
"Druid\\": "src/Druid"
}
},
"autoload-dev": {
"psr-4": {
"Druid\\Tests\\": "tests/Druid"
}
},
"config": {
"bin-dir": "bin"
}
}