-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathcomposer.json
71 lines (71 loc) · 1.77 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
68
69
70
71
{
"name": "freedsx/ldap",
"description": "A Pure PHP LDAP library",
"homepage": "https://github.com/FreeDSx/LDAP",
"keywords": [
"LDAP",
"OpenLDAP",
"ActiveDirectory"
],
"license": "MIT",
"authors": [
{
"name": "Chad Sikorra",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1",
"freedsx/asn1": ">=0.4.0",
"freedsx/socket": ">=0.5.0",
"freedsx/sasl": ">=0.1.0",
"psr/log": "^1|^2|^3"
},
"require-dev": {
"phpspec/phpspec": "^7.2|^7.1|^6.1|^5.1",
"phpunit/phpunit": "^9.3|^8.0|^7.0",
"symplify/easy-coding-standard": "^6.1|^7.3|^9.0",
"friends-of-phpspec/phpspec-code-coverage": "^4.3|^6.1|dev-master",
"phpstan/phpstan": "^0.12.70",
"symfony/process": "^3.0|^4.0|^5.0",
"squizlabs/php_codesniffer": "3.*",
"slevomat/coding-standard": "~7.0"
},
"suggest": {
"ext-openssl": "For SSL/TLS support and some SASL mechanisms.",
"ext-pcntl": "For LDAP server functionality."
},
"autoload": {
"psr-4": {"FreeDSx\\Ldap\\": "src/FreeDSx/Ldap"}
},
"autoload-dev": {
"psr-4": {
"integration\\FreeDSx\\Ldap\\": "tests/integration/FreeDSx/Ldap",
"spec\\FreeDSx\\Ldap\\": "tests/spec/FreeDSx/Ldap"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"test-coverage": [
"phpspec run --no-interaction -c phpspec.cov.yml",
"phpunit --coverage-clover=coverage-integration.xml"
],
"test-spec": [
"phpspec run --no-interaction"
],
"test-integration": [
"phpunit"
],
"analyse": [
"phpstan analyse"
],
"cs-fix": [
"phpcbf --standard=ruleset.xml --extensions=php --tab-width=4 -sp src",
"ecs --fix"
]
}
}