-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 1.04 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
{
"name": "ibrows/easysys-library",
"description": "Ibrows EasySys Bundle provides simple access to EasySysdata over Api",
"keywords": [
"ibrows",
"easysys",
"library",
"api"
],
"license": "MIT",
"authors": [
{
"name": "Marc Steiner",
"email": "[email protected]"
},
{
"name": "Mike Meier",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3.3",
"psr/log": "~1.0",
"symfony/property-access": "~2.3",
"saxulum/saxulum-http-client-interface": "~1.3"
},
"require-dev": {
"phpunit/phpunit": "~4.3",
"saxulum/saxulum-http-client-adapter-buzz": "~1.0,>=1.0.4"
},
"autoload": {
"psr-4": {"Ibrows\\EasySysLibrary\\": "src/"}
},
"suggest": {
"ibrows/easysys-bundle": "Integrated the api into a symfony2 bundle",
"saxulum/saxulum-http-client-adapter": "Chose an already existing http-client-adapter if you like"
}
}