-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 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
{
"name": "wsa/ws",
"type": "lib",
"description": "Lokalna bibljoteka za rad sa WS.",
"autoload": {
"psr-4": {
"Wsa\\Ws\\": "src/Ws"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Ws\\": "tests/Ws",
"Tests\\Ws\\ClassMap\\": "tests/ClassMap",
"Tests\\Ws\\TestAssets\\": "tests/TestAssets"
}
},
"authors": [
{
"name": "Vedran Vukoje",
"email": "[email protected]"
}
],
"require": {
"symfony/options-resolver": "^3.2",
"container-interop/container-interop": "^1.1.0",
"zendframework/zend-stdlib": "^3.1",
"zendframework/zend-xmlrpc": "^2.6",
"zendframework/zend-json": "^3.0",
"zendframework/zend-soap": "^2.6",
"symfony/var-dumper": "^3.2",
"symfony/http-foundation": "^3.2",
"doctrine/collections": "^1.4"
},
"require-dev": {
"phpunit/phpunit": "~5.7"
}
}