-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
53 lines (53 loc) · 1.07 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
{
"name": "k8s/ws-ratchet",
"description": "Ratchet based websocket adapter for k8s/client",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Chad Sikorra",
"email": "[email protected]"
}
],
"keywords": [
"k8s",
"kubernetes"
],
"require": {
"php": ">=7.2",
"k8s/core": "^1.3",
"ratchet/pawl": "^0.3|^0.4"
},
"require-dev": {
"ext-mbstring": "*",
"friendsofphp/php-cs-fixer": "^2.0",
"mockery/mockery": "~1.3.0",
"phpstan/phpstan": "^0.12",
"phpunit/phpunit": "^8.0|^9.5"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"K8s\\WsRatchet\\": "src/K8s/WsRatchet"
}
},
"autoload-dev": {
"psr-4": {
"unit\\K8s\\WsRatchet\\": "tests/unit/K8s/WsRatchet"
}
},
"scripts": {
"cs-fix": [
"@putenv PHP_CS_FIXER_IGNORE_ENV=1",
"php-cs-fixer fix src/ --rules=@PSR2"
],
"analyse": [
"phpstan analyse"
],
"test-unit": [
"phpunit --testsuite unit --coverage-clover coverage-unit.xml"
]
}
}