forked from edhelas/sasl2
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
67 lines (67 loc) · 1.74 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
{
"name": "fabiang/sasl",
"description": "Abstraction of various SASL mechanism responses.",
"license": "BSD-3-Clause",
"homepage": "https://github.com/fabiang/sasl",
"keywords": ["sasl", "authentication", "scram", "auth"],
"type": "library",
"authors": [
{
"name": "Fabian Grutschus",
"email": "[email protected]"
},
{
"name": "Anish Mistry",
"email": "[email protected]"
},
{
"name": "Richard Heyes",
"email": "[email protected]"
},
{
"name": "Michael Bretterklieber",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Fabiang\\Sasl\\": "src/"
},
"files": ["src/throwable.php"]
},
"autoload-dev": {
"psr-4": {
"Fabiang\\Sasl\\Behat\\": "tests/features/bootstrap",
"Fabiang\\Sasl\\": "tests/src"
},
"files": ["tests/compat.php"]
},
"require": {
"php": "^5.3.3 || ^7.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
},
"require-dev": {
"behat/behat": "^3.6",
"phpunit/phpunit": ">=4.8",
"slevomat/coding-standard": "*",
"squizlabs/php_codesniffer": "*",
"vimeo/psalm": "^5.23"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"phpcs": "phpcs",
"psalm": "psalm",
"phpunit": "phpunit",
"behat": "behat",
"test": [
"@psalm",
"@phpcs",
"@phpunit",
"@behat"
]
}
}