-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
74 lines (74 loc) · 1.8 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
73
74
{
"name": "talis/talis-php",
"description": "This is a php client library for talis APIs",
"version": "0.8.0",
"keywords": [
"persona",
"echo",
"babel",
"critic",
"manifesto",
"php",
"client library"
],
"homepage": "https://github.com/talis/talis-php",
"type": "library",
"license": "MIT",
"config": {
"sort-packages": true
},
"require": {
"php": ">=5.5.9",
"ext-hash": "*",
"ext-openssl": "*",
"doctrine/common": "^2.5",
"firebase/php-jwt": "^6.0",
"guzzlehttp/guzzle": "^6.5.8 || ^7.4.5",
"monolog/monolog": ">=1.13.1",
"predis/predis": ">=0.8.5",
"psr/log": ">=1.0.0"
},
"require-dev": {
"phpunit/phpunit": ">=4.8 <10",
"squizlabs/php_codesniffer": "3.*",
"phpmd/phpmd": "@stable",
"overtrue/phplint": "^1.1"
},
"autoload": {
"psr-4": {
"Talis\\Babel\\": "src/Talis/Babel",
"Talis\\Critic\\": "src/Talis/Critic",
"Talis\\EchoClient\\": "src/Talis/EchoClient",
"Talis\\Manifesto\\": "src/Talis/Manifesto",
"Talis\\Persona\\": "src/Talis/Persona"
}
},
"autoload-dev": {
"psr-4": {
"test\\": "test/"
}
},
"scripts": {
"code-check": "phpmd src text codesize,unusedcode,naming",
"lint": [
"@phplint",
"phpcs"
],
"phplint": "phplint --exclude=vendor --no-cache .",
"test": "phpunit",
"clean-build": "rm -rf build; mkdir build",
"clean-coverage": "rm -rf coverage; mkdir coverage",
"coverage": [
"@clean-coverage",
"phpunit --coverage-text --coverage-html coverage"
],
"unittest": [
"@clean-build",
"phpunit test/unit --log-junit build/unittest-report.xml"
],
"integrationtest": [
"@clean-build",
"phpunit test/integration --log-junit build/integrationtest-report.xml"
]
}
}