-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
69 lines (69 loc) · 1.94 KB
/
composer.json
File metadata and controls
69 lines (69 loc) · 1.94 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
67
68
69
{
"name": "keboola/notification-api-php-client",
"license": "MIT",
"type": "library",
"description": "Client for Notification API",
"keywords": [
"keboola",
"notification",
"client"
],
"authors": [
{
"name": "Keboola",
"email": "devel@keboola.com"
}
],
"autoload": {
"psr-4": {
"Keboola\\NotificationClient\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Keboola\\NotificationClient\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.2",
"ext-json": "*",
"guzzlehttp/guzzle": "^6.3|^7.2",
"psr/log": "^2|^3",
"symfony/validator": "^6.4|^7.0"
},
"require-dev": {
"infection/infection": "^0.26",
"keboola/coding-standard": ">=14.0",
"monolog/monolog": "^3.9",
"phpstan/phpstan": "^1.8",
"phpstan/phpstan-phpunit": "^1.1",
"phpunit/phpunit": "^9.5",
"symfony/dotenv": "^5.2|^6.0"
},
"scripts": {
"tests": "phpunit --coverage-clover build/logs/clover.xml --coverage-xml=build/logs/coverage-xml --log-junit=build/logs/phpunit.junit.xml",
"phpstan": "phpstan analyse --no-progress -c phpstan.neon",
"phpcs": "phpcs --extensions=php src tests",
"phpcbf": "phpcbf --extensions=php src tests",
"infection": "infection --threads=4 --min-covered-msi=90 --coverage=build/logs",
"build": [
"@phpcs",
"@phpstan",
"@tests",
"@infection"
],
"ci": [
"@composer validate --no-check-all --strict",
"@build"
]
},
"config": {
"sort-packages": true,
"process-timeout": 3600,
"lock": false,
"allow-plugins": {
"infection/extension-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}