This repository has been archived by the owner on Nov 26, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
71 lines (71 loc) · 2.08 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
{
"name": "lmc/matej-client-php5",
"type": "library",
"description": "PHP 5.6 compatible API Client for Matej recommendation engine",
"license": "MIT",
"authors": [
{
"name": "LMC s.r.o.",
"homepage": "https://github.com/lmc-eu"
}
],
"abandoned": "lmc/matej-client",
"require": {
"php": ">=5.6 <7.1",
"ext-hash": "*",
"ext-json": "*",
"beberlei/assert": "^2.8",
"fig/http-message-util": "^1.1",
"myclabs/php-enum": "^1.6",
"php-http/client-common": "^1.6",
"php-http/client-implementation": "^1.0",
"php-http/discovery": "^1.0",
"php-http/httplug": "^1.1",
"php-http/message": "^1.6",
"php-http/message-factory": "^1.0.2",
"php-http/promise": "^1.0",
"psr/http-message": "^1.0",
"ramsey/uuid": "^3.7"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.7",
"php-parallel-lint/php-console-highlighter": "^0.3.2",
"php-parallel-lint/php-parallel-lint": "^0.9.2",
"php-coveralls/php-coveralls": "^2.0",
"php-http/guzzle6-adapter": "^1.1",
"php-http/mock-client": "^1.0",
"php-mock/php-mock-phpunit": "^1.0 || ^2.0",
"phpunit/phpunit": "^5.7 || ^6.4 <6.5",
"sminnee/phpunit-mock-objects": "^3.4",
"spatie/7to5": "^1.3",
"symfony/var-dumper": "^3.3"
},
"config": {
"platform": {
"php": "5.6.30"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"Lmc\\Matej\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Lmc\\Matej\\": "tests/unit/",
"Lmc\\Matej\\IntegrationTests\\": "tests/integration/"
}
},
"minimum-stability": "stable",
"scripts": {
"all": [
"@analyze",
"./vendor/bin/phpunit"
],
"analyze": [
"vendor/bin/php-cs-fixer fix -vvv --diff --diff-format=udiff --dry-run --ansi",
"vendor/bin/parallel-lint src/ tests/"
]
}
}