forked from lmc-eu/matej-client-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
59 lines (59 loc) · 1.72 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
{
"name": "lmc/matej-client",
"description": "API Client for Matej recommendation engine",
"type": "library",
"license": "MIT",
"minimum-stability": "stable",
"authors": [
{
"name": "LMC s.r.o.",
"homepage": "https://github.com/lmc-eu"
}
],
"autoload": {
"psr-4": {
"Lmc\\Matej\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Lmc\\Matej\\": "tests/unit/",
"Lmc\\Matej\\IntegrationTests\\": "tests/integration/"
}
},
"require": {
"php": "^7.1",
"ext-json": "*",
"ext-hash": "*",
"php-http/httplug": "^1.1",
"php-http/message-factory": "^1.0",
"php-http/client-implementation": "^1.0",
"php-http/discovery": "^1.0",
"fig/http-message-util": "^1.1",
"php-http/client-common": "^1.6",
"beberlei/assert": "^2.8",
"ramsey/uuid": "^3.7"
},
"require-dev": {
"php-http/guzzle6-adapter": "^1.1",
"php-http/mock-client": "^1.0",
"php-http/message": "^1.0",
"phpunit/phpunit": "^5.7 || ^6.4 <6.5",
"phpstan/phpstan-shim": "^0.9.0",
"phpstan/phpstan-phpunit": "^0.9.0",
"php-coveralls/php-coveralls": "^2.0",
"symfony/var-dumper": "^3.3 || ^4.0",
"php-mock/php-mock-phpunit": "^1.0 || ^2.0",
"lmc/coding-standard": "^1.0"
},
"scripts": {
"all": [
"@analyze",
"./vendor/bin/phpunit --colors=always"
],
"analyze": [
"vendor/bin/ecs check src/ tests/ -vvv --ansi",
"vendor/bin/phpstan.phar analyze ./src ./tests -c phpstan.neon --level 7 --ansi"
]
}
}