-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
72 lines (72 loc) · 1.92 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
68
69
70
71
72
{
"name": "zfr/zfr-lightspeed-retail",
"type": "library",
"license": "MIT",
"description" : "PHP library for interacting with the Lightspeed Retail REST API",
"keywords": [
"lightspeed",
"retail",
"pos",
"api"
],
"homepage": "https://github.com/zf-fr/zfr-lightspeed-retail",
"authors": [
{
"name": "Daniel Gimenes",
"email": "[email protected]"
},
{
"name": "Michaël Gallego",
"email": "[email protected]",
"homepage": "http://www.michaelgallego.fr"
}
],
"require": {
"php": "^7.1",
"container-interop/container-interop": "^1.1",
"guzzlehttp/command": "^1.0",
"guzzlehttp/guzzle": "^6.2",
"guzzlehttp/guzzle-services": "^1.0",
"guzzlehttp/psr7": "^1.3",
"psr/http-message": "^1.0",
"lcobucci/jwt": "^3.2"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"squizlabs/php_codesniffer": "^2.9",
"zendframework/zend-coding-standard": "^1.0",
"zendframework/zend-servicemanager": "^3.0",
"malukenho/docheader": "^0.1.5"
},
"suggest": {
"zendframework/zend-servicemanager": "If you want to use built-in container factories"
},
"autoload": {
"psr-4": {
"ZfrLightspeedRetail\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ZfrLightspeedRetailTest\\": "test/"
}
},
"scripts": {
"check": [
"@cs-check",
"@test",
"@license-check"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit",
"license-check": "vendor/bin/docheader check config src test "
},
"extra": {
"zf": {
"config-provider": [
"ZfrLightspeedRetail\\ConfigProvider"
]
}
}
}