forked from laminas/laminas-ldap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
85 lines (85 loc) · 2.17 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "kontextwork/laminas-ldap",
"description": "Provides support for LDAP operations including but not limited to binding, searching and modifying entries in an LDAP directory",
"license": "BSD-3-Clause",
"keywords": [
"laminas",
"ldap"
],
"homepage": "https://laminas.dev",
"support": {
"docs": "https://docs.laminas.dev/laminas-ldap/",
"issues": "https://github.com/laminas/laminas-ldap/issues",
"source": "https://github.com/laminas/laminas-ldap",
"rss": "https://github.com/laminas/laminas-ldap/releases.atom",
"chat": "https://laminas.dev/chat",
"forum": "https://discourse.laminas.dev"
},
"config": {
"sort-packages": true,
"platform": {
"php": "7.3.99"
},
"allow-plugins": {
"elendev/composer-push": true
}
},
"extra": {
"push": [
{
"name": "prod",
"type": "nexus",
"ssl-verify": true,
"url": "https://nexus.kw.kontextwork.com/repository/kw-composer-release/",
"ignore-by-git-attributes": true,
"ignore": [
"composer.phar",
"ldap_client_php.iml",
".idea"
]
}
]
},
"require": {
"php": "^7.3 || ~8.0.0 || ~8.1.0",
"ext-ldap": "*"
},
"require-dev": {
"laminas/laminas-coding-standard": "~1.0.0",
"laminas/laminas-config": "^3.7.0",
"laminas/laminas-eventmanager": "^3.4.0",
"laminas/laminas-stdlib": "^3.7.1",
"php-mock/php-mock-phpunit": "^2.6.0",
"phpunit/phpunit": "^9.5.19",
"psalm/plugin-phpunit": "^0.16.1",
"vimeo/psalm": "^4.22.0",
"elendev/composer-push": "*"
},
"suggest": {
"laminas/laminas-eventmanager": "Laminas\\EventManager component"
},
"autoload": {
"psr-4": {
"Laminas\\Ldap\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LaminasTest\\Ldap\\": "test/"
}
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"static-analysis": "psalm --shepherd --stats",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
},
"conflict": {
"zendframework/zend-ldap": "*"
}
}