forked from TeknooSoftware/sellsy-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 1.17 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
{
"name": "unialteri/sellsy-client",
"type": "library",
"description": "PHP library to use Sellsy API",
"keywords": ["sellsy", "client", "api", "library", "curl"],
"homepage": "http://teknoo.it/sellsy-client",
"license": ["MIT","GPL-3.0+"],
"authors": [
{
"name": "Richard Déloge",
"email": "[email protected]",
"role":"Software architect, Lead developer"
}
],
"support": {
"issues": "https://github.com/UniAlteri/sellsy-client/issues",
"source": "https://github.com/UniAlteri/sellsy-client"
},
"require":{
"php": ">=5.4.0",
"unialteri/curl-request": ">=0.8.0-beta,<2.0"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"phpunit/phpunit-mock-objects": "~2.3",
"phpunit/phpunit-selenium": "~1.4",
"phpunit/phpunit-story": "~1.0"
},
"minimum-stability": "beta",
"autoload": {
"psr-4": {
"UniAlteri\\Sellsy\\Client\\": ["src/Client/"],
"UniAlteri\\Tests\\Sellsy\\Client\\": ["tests/Sellsy/"]
}
},
"archive": {
"exclude": ["demo", "vendor", ".idea"]
}
}