1{
2  "name": "freedsx/sasl",
3  "description": "A Pure PHP SASL Library",
4  "homepage": "https://github.com/FreeDSx/SASL",
5  "keywords": [
6    "SASL",
7    "DIGEST-MD5",
8    "CRAM-MD5"
9  ],
10  "license": "MIT",
11  "authors": [
12    {
13      "name": "Chad Sikorra",
14      "email": "Chad.Sikorra@gmail.com"
15    }
16  ],
17  "require": {
18    "php": ">=7.1"
19  },
20  "require-dev": {
21    "phpunit/phpunit": "^7.0",
22    "phpstan/phpstan": "^0.11.12",
23    "symplify/easy-coding-standard": "^6.1"
24  },
25  "suggest": {
26    "ext-openssl": "Needed for encryption for certain mechanisms."
27  },
28  "autoload": {
29    "psr-4": {"FreeDSx\\Sasl\\": "src/FreeDSx/Sasl"}
30  },
31  "autoload-dev": {
32    "psr-4": {"unit\\FreeDSx\\Sasl\\": "tests/unit/FreeDSx/Sasl"}
33  },
34  "scripts": {
35    "test": [
36      "phpunit"
37    ],
38    "test-coverage": [
39      "phpunit --coverage-clover=coverage.xml"
40    ],
41    "analyse": [
42      "phpstan analyse"
43    ]
44  }
45}
46