-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
81 lines (81 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
73
74
75
76
77
78
79
80
81
{
"name": "covergenius/xcover-php",
"description": "XCover API SDK for PHP",
"keywords": [
"xcover",
"insurance",
"api"
],
"license": "MIT",
"homepage": "https://www.covergenius.com/xcover/",
"type": "library",
"authors": [
{
"name": "Artem Kolesnikov",
"email": "[email protected]"
},
{
"name": "Mith Habib",
"email": "[email protected]"
},
{
"name": "Scott Flack",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4.0||^8.0",
"guzzlehttp/guzzle": "^7.2",
"ext-json": "*",
"ext-mbstring": "*"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.7",
"php-vcr/php-vcr": "^1.5.2",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-deprecation-rules": "^1.1",
"phpunit/phpunit": "^9.0",
"vlucas/phpdotenv": "^2.5"
},
"autoload": {
"psr-4": {
"XCoverClient\\": "src/"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"XCoverClient\\Tests\\": "tests/"
}
},
"scripts": {
"install-codestandards": [
"Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin::run"
],
"post-install-cmd": [
"@install-codestandards"
],
"test": "./vendor/bin/phpunit --colors=always",
"lint": "./vendor/bin/phpcs --warning-severity=6 --runtime-set testVersion 5.6-",
"analyse": "./vendor/bin/phpstan analyse",
"analyse-ci": "./vendor/bin/phpstan analyse --error-format github > phpstan.json"
},
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"php-http/discovery": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": [
{
"type": "git",
"url": "https://github.com/CoverGenius/phpunit-testlistener-vcr"
}
]
}