xref: /plugin/pureldap/vendor/freedsx/ldap/composer.json (revision 3b5700e13795d5d841394b44a81ce0caff6654da)
1{
2  "name": "freedsx/ldap",
3  "description": "A Pure PHP LDAP library",
4  "homepage": "https://github.com/FreeDSx/LDAP",
5  "keywords": [
6    "LDAP"
7  ],
8  "license": "MIT",
9  "authors": [
10    {
11      "name": "Chad Sikorra",
12      "email": "Chad.Sikorra@gmail.com"
13    }
14  ],
15  "require": {
16    "php": ">=7.1",
17    "freedsx/asn1": "^0.4.0",
18    "freedsx/socket": "^0.4.0",
19    "freedsx/sasl": "^0.1.0"
20  },
21  "require-dev": {
22    "phpspec/phpspec": "^5.1|^6.1",
23    "phpunit/phpunit": "^8.0|^7.0",
24    "phpstan/phpstan": "^0.11.15",
25    "phpstan/phpstan-strict-rules": "^0.11.1",
26    "symplify/easy-coding-standard": "^6.1",
27    "friends-of-phpspec/phpspec-code-coverage": "^4.3"
28  },
29  "suggest": {
30    "ext-openssl": "For SSL/TLS support and some SASL mechanisms."
31  },
32  "autoload": {
33    "psr-4": {"FreeDSx\\Ldap\\": "src/FreeDSx/Ldap"}
34  },
35  "autoload-dev": {
36    "psr-4": {
37      "unit\\FreeDSx\\Ldap\\": "tests/unit/FreeDSx/Ldap",
38      "spec\\FreeDSx\\Ldap\\": "tests/spec/FreeDSx/Ldap"
39    }
40  },
41  "scripts": {
42    "test-coverage": [
43      "phpspec run --no-interaction -c phpspec.cov.yml",
44      "phpunit --coverage-clover=coverage-integration.xml"
45    ],
46    "test-spec": [
47      "phpspec run --no-interaction"
48    ],
49    "test-integration": [
50      "phpunit"
51    ],
52    "analyse": [
53      "phpstan analyse"
54    ]
55  }
56}
57