forked from realtimeregister/realtimeregister-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
66 lines (66 loc) · 1.89 KB
/
composer.json
File metadata and controls
66 lines (66 loc) · 1.89 KB
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
{
"name": "realtimeregister/realtimeregister-php",
"description": "The PHP SDK for the RealtimeRegister REST API.",
"type": "library",
"license": "MIT",
"minimum-stability": "stable",
"prefer-stable": true,
"authors": [
{
"name": "Realtime Register",
"email": "support@realtimeregister.com"
}
],
"require": {
"php": "^8.1",
"ext-json": "*",
"guzzlehttp/guzzle": "^6.2.0|^7.0.1",
"psr/log": "^1.0|^2.0|^3.0.0",
"webmozart/assert": "^1.0.3"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.14.4",
"phpstan/phpstan": "^1.10.6",
"phpunit/phpunit": "^10.0.15",
"sandwave-io/php-cs-fixer-config": "^1.0.0"
},
"autoload": {
"psr-4": {
"RealtimeRegister\\": "./src"
}
},
"autoload-dev": {
"psr-4": {
"RealtimeRegister\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"test": [
"Composer\\Config::disableProcessTimeout",
"@test:types",
"@test:style",
"@test:unit"
],
"test:unit": [
"@php vendor/bin/phpunit"
],
"test:unit:coverage": [
"@php -dpcov.enabled=1 -dpcov.directory=. -dpcov.exclude=\"~vendor~\" vendor/bin/phpunit --colors=never --coverage-text"
],
"test:unit:coverage:html": [
"@php -dpcov.enabled=1 -dpcov.directory=. -dpcov.exclude=\"~vendor~\" vendor/bin/phpunit --coverage-html=coverage"
],
"test:types": [
"@php vendor/bin/phpstan analyze --no-progress"
],
"test:style": [
"@php vendor/bin/php-cs-fixer fix --dry-run --diff --show-progress=none"
],
"test:style:fix": [
"@php vendor/bin/php-cs-fixer fix"
]
}
}