-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
69 lines (69 loc) · 1.79 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
{
"name": "sandrokeil/arangodb-php-client",
"description": "ArangoDB Core Client",
"type": "library",
"license": "BSD-3-Clause",
"keywords": [
"arangodb",
"http",
"client",
"json",
"php"
],
"config": {
"sort-packages": true
},
"require": {
"php": "^7.2",
"ext-json": "*",
"fig/http-message-util": "^1.1.2",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0"
},
"require-dev": {
"infection/infection": "^0.16.3 || ^0.15.3",
"malukenho/docheader": "^0.1.8",
"php-coveralls/php-coveralls": "^2.1",
"phpstan/phpstan": "^0.12.29",
"phpstan/phpstan-strict-rules": "^0.12.2",
"phpunit/phpunit": "^9.2.3 || ^8.5",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^3.5.5",
"laminas/laminas-diactoros": "^2.3.0"
},
"autoload": {
"psr-4": {
"ArangoDb\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ArangoDbTest\\": "test/"
}
},
"scripts": {
"check": [
"@cs-check",
"@test",
"@analyze",
"@infection"
],
"analyze": "phpstan analyze -l max -c ./phpstan.installer.neon ./src",
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml",
"docheader": "docheader check src/ test/",
"infection": "infection"
},
"archive": {
"exclude": [
".coveralls.yml",
".travis.yml",
"build",
"phpunit.xml*",
"test"
]
}
}