-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 969 Bytes
/
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
{
"name": "freedsx/sasl",
"description": "A Pure PHP SASL Library",
"homepage": "https://github.com/FreeDSx/SASL",
"keywords": [
"SASL",
"DIGEST-MD5",
"CRAM-MD5"
],
"license": "MIT",
"authors": [
{
"name": "Chad Sikorra",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1"
},
"require-dev": {
"phpunit/phpunit": "^7.0|^8.5|^9.5",
"phpstan/phpstan": "^0.11|^0.12",
"symplify/easy-coding-standard": ">=6.1",
"symfony/polyfill-php80": "^1.27"
},
"suggest": {
"ext-openssl": "Needed for encryption for certain mechanisms."
},
"autoload": {
"psr-4": {"FreeDSx\\Sasl\\": "src/FreeDSx/Sasl"}
},
"autoload-dev": {
"psr-4": {"unit\\FreeDSx\\Sasl\\": "tests/unit/FreeDSx/Sasl"}
},
"scripts": {
"test": [
"phpunit"
],
"test-coverage": [
"phpunit --coverage-clover=coverage.xml"
],
"analyse": [
"phpstan analyse"
]
}
}