-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
67 lines (67 loc) · 1.51 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
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "zaporylie/tripletex",
"description": "PHP SDK for Tripletex API [v2]",
"keywords": [
"erp",
"tripletex",
"invoice",
"rest",
"api"
],
"license": "MIT",
"type": "library",
"homepage": "https://github.com/zaporylie/php-tripletex",
"authors": [
{
"name": "Jakub Piasecki",
"email": "jakub@piaseccy.pl",
"homepage": "https://github.com/zaporylie",
"role": "Developer"
}
],
"require": {
"php": ">=5.6",
"jms/serializer": "~1.4",
"eloquent/enumeration": "^5.1",
"php-http/httplug": "^1.1",
"php-http/discovery": "^1.0",
"php-http/message": "^1.0",
"php-http/client-implementation": "^1.0",
"doctrine/cache": "^1.6",
"doctrine/collections": "^1.4"
},
"require-dev": {
"php-http/guzzle6-adapter": "^1.0",
"phpunit/phpunit": "5.5.*",
"squizlabs/php_codesniffer": "^2.0",
"friendsofphp/php-cs-fixer": "^2.0",
"blablacar/redis-client": "^1.0"
},
"suggest": {
"php-http/guzzle6-adapter": "Guzzle adapter",
"blablacar/redis-client": "Needed if Redis will be used as the storage for tokens"
},
"scripts": {
"test": [
"@composer test-cs",
"@composer test-unit"
],
"test-cs": "./vendor/bin/phpcs -p",
"test-unit": "./vendor/bin/phpunit"
},
"autoload":{
"psr-4":{
"zaporylie\\Tripletex\\": "src/"
}
},
"autoload-dev":{
"psr-4":{
"zaporylie\\Tripletex\\": ["src/", "tests/"]
}
},
"config": {
"platform": {
"php": "5.6"
}
}
}